.azdent-academy {
    background: #fdfaf5;
    padding: 4.5em 0 5em;
}

.azdent-academy__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.azdent-academy__header {
    position: relative;
    text-align: center;
    margin-bottom: 3em;
}

.azdent-academy__logo {
    position: absolute;
    top: 0;
    right: 0;
    width: 96px;
    height: auto;
}

.azdent-academy__title {
    margin: 0 0 1.25em;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 700;
    line-height: 1.6;
    color: #1a1a1a;
}

.azdent-academy__brand {
    color: #c49b48;
}

.azdent-academy__intro {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.azdent-academy__intro-text {
    margin: 0;
    font-size: clamp(0.95rem, 1.6vw, 1.08rem);
    color: #444;
    line-height: 2;
}

.azdent-academy__intro-text--accent {
    color: #333;
    font-weight: 500;
}

.azdent-academy__cards {
    --azdent-card-height: clamp(360px, 42vw, 520px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 24px;
    margin-bottom: 3em;
}

.azdent-academy__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.azdent-academy__card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--azdent-card-height);
    padding: 12px;
    background: #faf7f2;
    line-height: 0;
}

.azdent-academy__card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.azdent-academy__action {
    display: flex;
    justify-content: center;
}

.azdent-academy__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, #d4af37 0%, #b8923f 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.15s ease;
    box-shadow: 0 4px 16px rgba(196, 155, 72, 0.35);
}

.azdent-academy__cta:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    color: #fff;
}

.azdent-academy__cta-icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
    flex-shrink: 0;
}

@media screen and (max-width: 991px) {
    .azdent-academy__cards {
        --azdent-card-height: clamp(420px, 75vw, 560px);
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-inline: auto;
        margin-bottom: 3em;
    }

    .azdent-academy__logo {
        position: static;
        display: block;
        margin: 0 auto 1.25em;
    }
}

@media screen and (max-width: 479px) {
    .azdent-academy {
        padding: 3em 0 4em;
    }

    .azdent-academy__container {
        padding: 0 16px;
    }

    .azdent-academy__cta {
        width: 100%;
        justify-content: center;
        padding-inline: 20px;
        font-size: 0.92rem;
    }
}
