/* ── Contacts section ───────────────────────────────────────────────────── */
section.contacts {
    min-height: fit-content;
    height: fit-content;
    flex-direction: column;
    background: var(--surface);
    padding-bottom: 3rem;
}

/* ── Content: image + info ──────────────────────────────────────────────── */
section.contacts > .contents {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1.25rem;
    gap: 1.5rem;
}
section.contacts > .contents > img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    border-radius: 0.85rem;
    display: block;
    flex-shrink: 0;
}
section.contacts > .contents > div {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    width: 100%;
}
section.contacts > .contents > div > span {
    font-size: 0.9375rem;
    color: var(--text);
    line-height: 1.5;
}
section.contacts > .contents > div > span a {
    color: var(--blue) !important;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
section.contacts > .contents > div > span a:hover {
    color: var(--cta) !important;
}

/* ── CTA ────────────────────────────────────────────────────────────────── */
section.contacts > .cta_btn {
    display: block;
    width: calc(100% - 2.5rem);
    height: 3rem;
    margin: 0 1.25rem;
    font-size: 0.95rem;
}

/* ── Tablet ─────────────────────────────────────────────────────────────── */
@media (min-width: 768px) {
    section.contacts > .contents {
        flex-direction: row;
        align-items: flex-start;
        padding: 1.75rem;
    }
    section.contacts > .contents > img {
        width: 44%;
        height: 18rem;
    }
    section.contacts > .contents > div {
        flex: 1;
        padding: 0.25rem 0;
    }
    section.contacts > .cta_btn {
        width: 50%;
        margin: 0 auto;
    }
}

/* ── Desktop ─────────────────────────────────────────────────────────────── */
@media (min-width: 1024px) {
    section.contacts > .contents > img {
        width: 40%;
        height: 20rem;
    }
    section.contacts > .cta_btn {
        width: 30%;
        margin: 0 auto;
    }
}
