.technology {
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: var(--paper);
}

.technology-heading {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: end;
}

.technology-heading h2 {
    max-width: 760px;
    margin: .4rem 0;
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: .92;
    letter-spacing: -.05em;
}

.technology-heading > p {
    margin: 0;
    color: #526474;
    line-height: 1.75;
}

.technology-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.8rem;
}

.technology-grid > a {
    display: flex;
    min-height: 285px;
    flex-direction: column;
    padding: 1.35rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    color: var(--text);
    background: #fff;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.technology-grid > a:hover,
.technology-grid > a:focus-visible {
    border-color: #71b6c3;
    box-shadow: 0 16px 34px rgba(7, 20, 38, .1);
    transform: translateY(-3px);
}

.technology-grid > a:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 3px;
}

.technology-logo {
    display: flex;
    width: 100%;
    height: 78px;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1.2rem;
}

.technology-logo img {
    display: block;
    width: auto;
    max-width: 150px;
    height: auto;
    max-height: 72px;
    object-fit: contain;
}

.technology-grid small {
    color: var(--blue);
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.technology-grid strong {
    margin: .45rem 0 .35rem;
    font-size: 1.35rem;
}

.technology-grid p {
    margin: 0;
    color: #5b6b7a;
    line-height: 1.6;
}

.technology-link {
    margin-top: auto;
    padding-top: 1.2rem;
    color: var(--blue);
    font-size: .82rem;
    font-weight: 800;
}

.technology-note {
    max-width: 930px;
    margin: 1.5rem 0 0;
    color: #647584;
    font-size: .78rem;
    line-height: 1.6;
}

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

    .technology-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .technology-grid > a {
        min-height: 0;
    }
}
