/* ============================================================
   Pricing template — fiyat (calculator) sayfaları
   Hero standart .dore-hero (treatment ile aynı).
   ============================================================ */

/* CONTENT ──────────────────────────────────────────────────── */
.dore-pricing-content-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
}

/* RELATED PRICING ──────────────────────────────────────────── */
.dore-pricing-related {
    background: var(--c-bg-alt);
    padding: 48px 0 56px;
    margin-top: 56px;
}
.dore-pricing-related-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
}
.dore-pricing-related-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--c-primary);
    margin: 0 0 24px;
    text-align: center;
}
.dore-pricing-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}
.dore-pricing-related-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px 22px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.dore-pricing-related-card:hover {
    border-color: var(--c-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(45, 37, 69, 0.08);
}
.dore-pricing-related-card-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--c-primary);
    margin-bottom: 6px;
    line-height: 1.35;
}
.dore-pricing-related-card-excerpt {
    font-size: 13px;
    color: var(--c-text-soft);
    line-height: 1.55;
    font-weight: 300;
    margin-bottom: 14px;
    flex: 1;
}
.dore-pricing-related-card-arrow {
    font-size: 13px;
    font-weight: 500;
    color: var(--c-accent);
    margin-top: auto;
}

/* MOBILE ───────────────────────────────────────────────────── */
@media (max-width: 600px) {
    .dore-pricing-related-title {
        font-size: 19px;
    }
    .dore-pricing-related {
        padding: 36px 0 44px;
    }
}
