/* ============================================================
   Elegant Theme — Highlight Cards (numaralı vurgu kartları)
   HighlightCards blok grubu: 01/02/03 numaralı kartlar
   ("Neden biz?" nedenleri, avantajlar vb.).
   ============================================================ */

.highlight-cards-section .highlight-card {
    position: relative;
    height: 100%;
    background: #fff;
    border: 1px solid #eee6db;
    border-top: 3px solid var(--bg-button, #b99d75);
    border-radius: 10px;
    padding: 30px 24px 26px;
    box-shadow: 0 10px 26px -20px rgba(0, 0, 0, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.highlight-cards-section .highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px -20px rgba(0, 0, 0, 0.34);
}

.highlight-cards-section .highlight-card__number {
    display: block;
    font-family: var(--font-heading, 'Forum', serif);
    font-size: 2.4rem;
    line-height: 1;
    color: rgba(185, 157, 117, 0.45);
    font-weight: 700;
    margin-bottom: 14px;
}

.highlight-cards-section .highlight-card__title {
    font-family: var(--font-heading, 'Forum', serif);
    font-size: 1.2rem;
    color: var(--color-heading, #111827);
    margin-bottom: 8px;
}

.highlight-cards-section .highlight-card__text {
    font-size: 14px;
    color: var(--color-body, #4b5563);
    line-height: 1.65;
}

.highlight-cards-section .highlight-card__link {
    display: inline-block;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-heading, #111827);
    text-decoration: none;
    border-bottom: 1px solid var(--bg-button, #b99d75);
    padding-bottom: 2px;
    transition: color 0.25s ease;
}

.highlight-cards-section .highlight-card__link:hover {
    color: var(--bg-button, #b99d75);
}
