/* ── Technology ───────────────────────────── */

.tech {
    padding-block: var(--space-24);
    background: var(--color-ink);
    color: var(--color-white);
}

.tech__header {
    margin-bottom: var(--space-14);
}

.tech__header .section-label {
    color: rgba(255,255,255,0.45);
}

.tech__header .section-label::before {
    background: rgba(255,255,255,0.25);
}

.tech__header .section-title {
    color: var(--color-white);
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
}

.tech__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.tech-feature {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.tech-feature__img-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: rgba(255,255,255,0.04);
}

.tech-feature__img-wrap--secondary {
    border-radius: var(--radius-lg);
}

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

.tech-feature--text {
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
}

.tech-item__tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-2);
}

.tech-item__title {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-white);
    margin-bottom: var(--space-2);
}

.tech-item__text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
}

@media (max-width: 900px) {
    .tech__grid {
        grid-template-columns: 1fr;
    }

    .tech-feature__img-wrap--secondary {
        display: none;
    }
}
