/* =============================================
   FONTS
   ============================================= */

@font-face {
    font-family: DanaReqular;
    src: url('../fonts/DanaPro/woff2/dana-fanum-regular.woff2') format('woff2');
    font-weight: normal;
}

@font-face {
    font-family: DanaBold;
    src: url('../fonts/DanaPro/woff2/dana-fanum-bold.woff2') format('woff2');
    font-weight: normal;
}

/* =============================================
   BASE
   ============================================= */

body {
    font-family: DanaReqular;
    direction: rtl;
    background: #F8F8F8;
    overflow-x: hidden;
}

a {
    text-decoration: none !important;
}

h1, h2, h3, b, strong {
    font-family: DanaBold;
}

.h1, h1 {
    font-size: 1.5em;
}

.h2, h2 {
    font-size: 1.25em;
}

.h3, h3 {
    font-size: 1em;
}

b, strong {
    font-weight: normal;
}

.dot-right:before {
    content: '';
    width: 5px;
    height: 5px;
    background: #FF5C5C;
    display: inline-block;
    border-radius: 50%;
    margin-left: 10px;
}


.btn-primary-action {
    background: #1f3b57;
    color: #fff;
    border: 1px solid #1f3b57;
    padding: 10px 5px;
    border-radius: 8px;
}

.btn-primary-action:hover {
    background: #152a3f;
    color: #fff;
}

.btn-outline-primary-action {
    background: transparent;
    color:#1f3b57;
    border: 1px solid #1f3b57;
    padding: 10px 5px;
    border-radius: 8px;
}

.btn-outline-primary-action:hover {
    background:#1f3b57;
    color: #fff;
}



.quiz-question {
    font-size: 1.05rem;
    margin-bottom: 18px;
}

.quiz-opt {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    text-align: right;
    background: #FAF8F2;
    border: 1.5px solid #DAD3C0;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 10px;
    cursor: pointer;
    font-family: inherit;
    font-size: .94rem;
    color: #122036;
    transition: .12s;
}

.quiz-opt:hover {
    border: 1.5px solid #bbae9f;
}

.quiz-opt .letter {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #DAD3C0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    flex-shrink: 0;
}

.quiz-opt.correct {
    border-color: #0E6B5C;
    background: #E4F1EC;
}

.quiz-opt.correct .letter {
    background: #0E6B5C;
    border-color: #0E6B5C;
    color: #fff;
}

.quiz-opt.wrong {
    border-color: #C1443A;
    background: #FBE9E7;
}

.quiz-opt.wrong .letter {
    background: #C1443A;
    border-color: #C1443A;
    color: #fff;
}

.quiz-opt:disabled {
    cursor: default;
}

.quiz-result {
    text-align: center;
    padding: 20px 0;
}

.quiz-result .score {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0E6B5C;
}

.quiz-head {
    padding: 16px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quiz-progress {
    width: 100%;
    height: 3px;
}

.quiz-progress-bar {
    height: 100%;
    background: #B8862F;
    width: 0;
    transition: width .3s ease;
}

.quiz-body {
    padding: 26px 22px;
}

.quiz-count {
    position: absolute;
    left: 10px;
    top: 10px;
}

.quiz-result-number {
    font-size: 30px;
}

.btn-buy {
    font-family: DanaBold;
    padding: 10px 5px;
    border-radius: 8px;
}

/* =============================================
   HEADER
   ============================================= */

.top-header {
    position: relative;
    background: #fff;
    padding: 10px 15px 1px;
    border-bottom: 1px solid #dee2e6;
}

.top-header:before {
    content: '';
    background: #006fff;
    height: 8px;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
}
/* --- Comment Item --- */
.comment-item {
    display: flex;
    gap: 14px;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}
.comment-item:first-child { padding-top: 0; }
.comment-item:last-child { border-bottom: none; }

.comment-avatar,
.comment-reply-avatar {
    flex-shrink: 0;
}
.comment-avatar img,
.comment-reply-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}
.comment-reply-avatar img {
    width: 38px;
    height: 38px;
}

.comment-body {
    flex: 1;
    min-width: 0;
}

.comment-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 6px;
}

.comment-author {
    font-weight: 600;
    color: #111827;
    font-size: 15px;
}

.comment-stars {
    font-size: 13px;
    color: #fbbf24;
    letter-spacing: 2px;
}
.comment-stars i.bi-star {
    color: #d1d5db;
}

.comment-text {
    color: #374151;
    line-height: 1.9;
    font-size: 14.5px;
}

/* --- Reply from Admin --- */
.comment-reply {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    padding: 12px 14px;
    background: #f9fafb;
    border-radius: 10px;
    border-right: 3px solid #2563eb;
}
.comment-reply-body { flex: 1; }
.comment-reply-author {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: #2563eb;
    margin-bottom: 4px;
}
.comment-reply-text {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.8;
}

/* --- Empty state --- */
.comment-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}
.comment-empty i {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
    color: #d1d5db;
}
.comment-empty p { margin: 0; }

/* --- Comment Form --- */
.comment-form-wrapper {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e5e7eb;
}
.comment-form-title {
    font-size: 17px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.comment-form .form-control {
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    padding: 10px 14px;
    font-size: 14px;
}
.comment-form .form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.comment-form .form-label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}
.required { color: #ef4444; }

/* --- Star Rating Input (RTL-aware) --- */
.comment-rating {
    margin-bottom: 20px;
}
.rate {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 4px;
}
.rate input[type="radio"] {
    display: none;
}
.rate label {
    cursor: pointer;
    font-size: 26px;
    color: #d1d5db;
    transition: color 0.15s ease;
}
.rate label::before {
    content: "\2605"; /* ★ */
}
.rate input[type="radio"]:checked ~ label,
.rate label:hover,
.rate label:hover ~ label {
    color: #fbbf24;
}

.site-footer {
    margin-top: 50px;
    background: #0f1724;
    color: rgba(255, 255, 255, 0.7);
}

.footer-main {
    padding: 50px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    margin-bottom: 18px;
}

.footer-logo img {
    border-radius: 10px;
}

.footer-about-text {
    font-size: 0.9rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-copyright {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

.footer-copyright strong {
    color: rgba(255, 255, 255, 0.55);
}

.footer-domain {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

.footer-links {
    list-style: none;
    padding-right: 0;
}

/* =============================================
   ADDED: DESIGN TOKENS (reuse existing palette)
   ============================================= */
:root {
    --navy: #1f3b57;
    --navy-dark: #152a3f;
    --gold: #B8862F;
    --green: #0E6B5C;
    --red: #C1443A;
    --text-muted: #6b7280;
    --text-soft: #6b7280;
    --border-soft: #e5e7eb;
    --bg-soft: #F8F8F8;
}

.text-navy { color: var(--navy); }
.text-soft { color: var(--text-soft); }

/* =============================================
   HERO SECTION (home page)
   ============================================= */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 70px 15px 90px;
    overflow: hidden;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(184, 134, 47, .18), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(255, 255, 255, .06), transparent 45%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: .5;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.1rem;
    margin-bottom: 14px;
    color: #fff;
}

.hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, .75);
    line-height: 2;
    margin: 0;
}

/* =============================================
   SECTION HEADER (used above category blocks)
   ============================================= */
.section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 40px 0 26px;
}

.section-header-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-soft) 50%, transparent);
}

.section-title {
    white-space: nowrap;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
}

.section-title i {
    color: var(--gold);
}

/* =============================================
   LATEST FILES / CATEGORY BLOCKS
   ============================================= */
.latest-files-section {
    padding-bottom: 40px;
}

.category-block {
    margin-bottom: 38px;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-soft);
}

.category-title-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.category-title {
    margin: 0;
    color: var(--navy);
}

.btn-view-all {
    font-size: .85rem;
    color: var(--navy);
    background: transparent;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    padding: 6px 14px;
    white-space: nowrap;
    transition: .15s;
}

.btn-view-all:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

/* =============================================
   PRODUCT / POST CARD
   ============================================= */
.new-posts-block { padding-bottom: 20px; }

.card-link {
    display: block;
    color: inherit;
    height: 100%;
}

.card-link .card {
    height: 100%;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 3px rgba(15, 23, 36, .04);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card-link:hover .card {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(15, 23, 36, .1);
    border-color: rgba(184, 134, 47, .35);
}

.card-img-wrapper {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bg-soft);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.card-link:hover .card-img {
    transform: scale(1.05);
}

.card-body {
    padding: 16px 16px 14px;
}

.card-title {
    color: #16233a;
}


.card-arrow {
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform .18s ease;
}

.card-link:hover .card-arrow {
    transform: translateX(-4px);
}

/* Tighten offer/price block inside cards */
.card-body [itemprop="offers"] p { margin: 0; }
.card-body [itemprop="offers"] del { font-size: .8rem; }
.card-body [itemprop="offers"] .text-success { font-size: .95rem; }

/* =============================================
   SUB HEADER (inner pages banner)
   ============================================= */
.sub-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    margin-bottom: 30px;
}

.sub-header h1 {
    font-size: 1.5rem;
}

.sub-header .breadcrumb {
    background: transparent;
    margin: 0;
    justify-content: center;
    padding: 0;
}

.sub-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}

.sub-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, .65);
}

/* Generic breadcrumb (blog / post pages using default bootstrap breadcrumb) */
.breadcrumb {
    font-size: .85rem;
}

/* =============================================
   DISCOUNT CHIP + BUY BOX (buy_form) — redesigned
   ============================================= */
.discount-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, var(--red), #e05d51);
    color: #fff;
    font-size: .74rem;
    padding: 5px 14px;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(193, 68, 58, .25);
    position: absolute;
    left: 5px;
    top: 10px;
}

#buyForm.card {
    border: 1.5px solid rgba(184, 134, 47, .35);
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(31, 59, 87, .1);
    background: #fff;
    overflow: hidden;
    position: sticky;
    top: 16px;
}

#buyForm.card .card-body {
    padding: 0;
}

/* --- Buy box shell --- */
.buy-box {
    display: flex;
    flex-direction: column;
}

.buy-box-top {
    padding: 22px 20px 20px;
    text-align: center;
    color: #fff;
    position: relative;
}

.buy-box-eyebrow {
    font-size: .78rem;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 10px;
}

/* Price block (wraps the shared main_price_and_discount partial) */
.buy-box-price [itemprop="offers"] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.buy-box-price [itemprop="offers"] p {
    margin: 0;
}

.buy-box-price [itemprop="offers"] del {
    font-size: .82rem;
    color: rgba(255, 255, 255, .45);
}

.buy-box-price [itemprop="offers"] b.text-success {
    font-size: 2rem;
    color: #fff;
    font-family: DanaBold;
    line-height: 1.3;
}

.buy-box-save {
    display: inline-block;
    margin-top: 10px;
    font-size: .76rem;
    color: #FFE7A3;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    padding: 4px 14px;
}

/* Urgency line (wraps offer_to_tomarrow partial) */
.buy-box-urgency p {
    margin: 8px 0 0;
    font-size: .82rem;
}
.buy-box-urgency b.text-danger {
    color: #FF9F9F !important;
}

/* --- Feature checklist --- */
.buy-box-features {
    list-style: none;
    margin: 0;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    border-bottom: 1px solid var(--border-soft);
}

.buy-box-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .84rem;
    color: #374151;
}

.buy-box-features li i {
    color: var(--green);
    font-size: 1rem;
}

/* --- Form body --- */
.buy-box-form {
    padding: 18px 20px 20px;
}

.buy-box-field {
    margin-bottom: 12px;
}

.buy-box-field label {
    display: block;
    font-size: .78rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.buy-box-field .input-icon-group {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    background: #FAFBFC;
    transition: border-color .15s ease, box-shadow .15s ease;
    overflow: hidden;
}

.buy-box-field .input-icon-group:focus-within {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(31, 59, 87, .08);
    background: #fff;
}

.buy-box-field .input-icon-group i {
    width: 40px;
    text-align: center;
    color: #9aa3af;
    font-size: .95rem;
    flex-shrink: 0;
}

.buy-box-field .input-icon-group input {
    border: none;
    background: transparent;
    box-shadow: none;
    padding: 10px 10px 10px 4px;
    font-size: .9rem;
    width: 100%;
}

.buy-box-field .input-icon-group input:focus {
    outline: none;
    box-shadow: none;
}

.buy-box-optional-tag {
    font-size: .72rem;
    color: #b4bcc7;
    font-weight: normal;
}

.btn-buy {
    background: linear-gradient(135deg, var(--green), #0a8c74);
    border: none;
    color: #fff;
    font-size: 1.02rem;
    padding: 14px 10px;
    box-shadow: 0 10px 22px rgba(14, 107, 92, .28);
    transition: transform .15s ease, box-shadow .15s ease;
}

.btn-buy small {
    display: block;
    font-size: .72rem;
    font-family: DanaReqular;
    opacity: .85;
    margin-top: 2px;
}

.btn-buy:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(14, 107, 92, .35);
    color: #fff;
}

.buy-box-secure {
    font-size: .78rem;
    color: var(--text-muted);
}

.buy-box-trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 10px 0 2px;
}

.buy-box-trust-badges img {
    max-height: 34px;
    width: auto;
    opacity: .9;
}

.buy-box-delivery-note {
    background: var(--bg-soft);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: .82rem;
    color: #4b5563;
    line-height: 1.9;
    margin-top: 14px;
}

.buy-box-delivery-note b {
    color: var(--navy);
}

.buy-box-support-note {
    font-size: .78rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-top: 10px;
}

.buy-box-support-note b {
    color: var(--green);
}

@media (max-width: 991px) {
    #buyForm.card {
        position: static;
    }
}

/* =============================================
   BUTTONS used on show_post page
   ============================================= */
.btn-post-primary {
    background: var(--green);
    color: #fff;
    border-radius: 10px;
    padding: 12px;
    font-family: DanaBold;
    box-shadow: 0 -4px 14px rgba(0, 0, 0, .08);
}

.btn-post-primary:hover { color: #fff; background: #0a8c74; }

.btn-post-outline {
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
}

.post-mobile-buy {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    padding: 10px 14px;
    background: #fff;
    border-top: 1px solid var(--border-soft);
    z-index: 98;
}

/* =============================================
   FOOTER: missing pieces
   ============================================= */
.footer-col-title {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .15s;
}

.footer-social-link:hover {
    background: var(--gold);
    color: #fff;
}

.footer-links li {
    margin-bottom: 10px;
    font-size: .88rem;
}

.footer-links a {
    color: rgba(255, 255, 255, .55);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: .15s;
}

.footer-links a:hover {
    color: #fff;
}

/* =============================================
   BLOG (new pages)
   ============================================= */
.blog-card {
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    height: 100%;
    transition: transform .18s ease, box-shadow .18s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(15, 23, 36, .1);
}

.blog-card-img {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--bg-soft);
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-body {
    padding: 16px;
}

.blog-card-meta {
    font-size: .78rem;
    color: var(--text-muted);
    display: flex;
    gap: 14px;
    margin-bottom: 8px;
}

.blog-card-title {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #16233a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-excerpt {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.9;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.blog-card-more {
    font-size: .82rem;
    color: var(--gold);
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.blog-article {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 30px;
}

.blog-article-cover {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 24px;
    aspect-ratio: 16 / 7;
    object-fit: cover;
}

.blog-article-title {
    font-size: 1.5rem;
    margin-bottom: 14px;
    color: var(--navy);
}

.blog-article-meta {
    font-size: .85rem;
    color: var(--text-muted);
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-soft);
}

.blog-article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-article-body {
    line-height: 2.1;
    font-size: .98rem;
    color: #2a3444;
}

.blog-article-body img {
    max-width: 100%;
    border-radius: 10px;
}

.blog-article-body h2,
.blog-article-body h3 {
    color: var(--navy);
    margin-top: 30px;
}

.blog-sidebar-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
}

.blog-sidebar-title {
    font-size: .95rem;
    color: var(--navy);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.blog-related-item {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.blog-related-item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.blog-related-item-title {
    font-size: .82rem;
    line-height: 1.7;
    color: #16233a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.blog-tag {
    font-size: .78rem;
    color: var(--navy);
    background: var(--bg-soft);
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    padding: 5px 14px;
}

.namad-section {
    background: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
}

/* =============================================
   RESPONSIVE TWEAKS
   ============================================= */
@media (max-width: 767px) {
    .hero-title { font-size: 1.5rem; }
    .hero-desc { font-size: .9rem; }
    .section-title { font-size: 1.05rem; }
    .blog-article { padding: 18px; }
    .blog-article-title { font-size: 1.2rem; }
}
