/* CSS Document */
.tech-page {max-width: 1240px;margin: 0 auto;padding: 60px 20px 80px;}
.tech-page .scroll > div {
  opacity: 0;
}
.tech-page .ready > div {
  opacity: 1;
  animation: fadeInUp 1.2s both;
}

.tech-page p {}

.tech-intro {
margin-bottom: 40px;
}

.tech-intro p {
max-width: 920px;
}

.tech-heading-main {font-size: 24px;font-weight: 700;margin-bottom: 8px;}

.tech-heading-sub {
margin-bottom: 22px;
}

.tech-resources {
margin-top: 24px;
margin-bottom: 50px;
}

.tech-resources-title {margin-bottom: 12px;}

.tech-resources-list {
border-radius: 2px;
overflow: hidden;
border-top: 1px solid #e6edf3;
}

.tech-resource-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding: 14px 0;
border-bottom: 1px solid #e6edf3;
}

.tech-resource-row:last-child {
border-bottom: 1px solid #e6edf3;
}

.tech-resource-title {font-weight: 600;color: #004565;max-width: 700px;}

.download-btn {
min-width: 130px;
padding: 8px 22px;
border-radius: 999px;
border: 1px solid #1c9cf4;
font-size: 13px;
font-weight: 500;
color: #1c9cf4;
background: #ffffff;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
text-decoration: none;
transition: background 0.2s ease, color 0.2s ease;
}

.download-btn:hover {
background: #1c9cf4;
color: #ffffff;
}

.download-btn span {
font-size: 12px;
}

.tech-row {
display: grid;
grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
gap: 34px;
align-items: center;
margin-bottom: 60px;
}

.tech-feature-media {width: 100%;display: flex;justify-content: center;}

.tech-row img {
width: 100%;
height: auto;
display: block;
}

.tech-video-wrap {display: block;position: relative;width: 100%;padding-bottom: 56.25%;overflow: hidden;border-radius: 4px;}

.tech-video-wrap iframe {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
border: 0;
}

.tech-feature {display: grid;grid-template-columns: minmax(0, 0.5fr) minmax(0, 0.5fr);gap: 34px;align-items: center;justify-items: end;margin-bottom: 60px;}

.tech-feature-text h3 {margin-bottom: 12px;}

.tech-feature-text p + p {
margin-top: 10px;
}

.tech-feature img {
width: 100%;
height: auto;
display: block;
}

.tech-feature.reverse {
grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
}

.tech-feature.reverse .tech-feature-text {
order: 2;
}

.tech-feature.reverse .tech-feature-media {
order: 1;
}

.tech-feature-stack {
margin-bottom: 32px;
}

@media (max-width: 900px) {
    .tech-row,
    .tech-feature,
    .tech-feature.reverse {
        grid-template-columns: minmax(0, 1fr);
    }

    .tech-feature.reverse .tech-feature-text,
    .tech-feature.reverse .tech-feature-media {
        order: initial;
    }

    .tech-resource-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .download-btn {
        align-self: flex-end;
    }
}

@media (max-width: 600px) {
    .tech-page {
        padding: 40px 16px 60px;
    }

    .tech-heading-main {
        font-size: 22px;
    }

    .tech-feature-text h3 {
        font-size: 17px;
    }
}


@media (max-width: 1200px) {}
@media (max-width: 991px) {}
@media (max-width: 768px) {}