/* ============================================================
   Blog Post Styles — Mint Dental
   ============================================================ */

/* ── Hero Banner ── */
.mint-post-hero {
    position: relative;
    height: 480px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.mint-post-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.mint-post-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,30,50,0.85) 0%, rgba(10,30,50,0.35) 55%, transparent 100%);
    z-index: 1;
}

.mint-post-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px 45px;
}

.mint-post-hero__tag {
    display: inline-block;
    background: #25bdad;
    color: #fff;
    font-size: 12px !important;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.mint-post-hero__content h1 {
    font-size: 40px !important;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.mint-post-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: rgba(255,255,255,0.8);
    font-size: 14px !important;
}

.mint-post-hero__meta i {
    color: #25bdad;
    margin-right: 5px;
}

/* ── Layout ── */
.mint-post-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 30px;
    align-items: start;
}

/* ── Article Content ── */
.mint-post-content {
    min-width: 0;
}

.mint-post-lead {
    font-size: 18px !important;
    line-height: 1.8;
    color: #444;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 2px solid #e8f5f4;
}

.mint-post-content h2 {
    font-size: 28px !important;
    font-weight: 700;
    color: #0f3d57;
    margin-top: 40px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.mint-post-content h3 {
    font-size: 20px !important;
    font-weight: 700;
    color: #25bdad;
    margin-top: 28px;
    margin-bottom: 12px;
}

.mint-post-content p {
    font-size: 16px !important;
    line-height: 1.85;
    color: #555;
    margin-bottom: 20px;
}

.mint-post-content ul,
.mint-post-content ol {
    margin: 0 0 22px 22px;
    padding: 0;
}

.mint-post-content ul li,
.mint-post-content ol li {
    font-size: 16px !important;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.mint-post-content strong {
    color: #0f3d57;
}

/* ── In-article Image ── */
.mint-post-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 14px;
    margin: 32px 0;
    display: block;
}

/* ── Highlight / Callout Box ── */
.mint-post-highlight {
    display: flex;
    gap: 16px;
    background: #e6f9f7;
    border-left: 4px solid #25bdad;
    border-radius: 10px;
    padding: 20px 22px;
    margin: 32px 0;
    align-items: flex-start;
}

.mint-post-highlight > i {
    color: #25bdad;
    font-size: 22px !important;
    margin-top: 2px;
    flex-shrink: 0;
}

.mint-post-highlight div {
    font-size: 15px !important;
    line-height: 1.7;
    color: #444;
}

.mint-post-highlight strong {
    color: #0f3d57;
}

/* ── Comparison Table ── */
.mint-post-table-wrap {
    overflow-x: auto;
    margin: 28px 0;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

.mint-post-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px !important;
    min-width: 520px;
}

.mint-post-table thead th {
    background: #0f3d57;
    color: #fff;
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
}

.mint-post-table tbody tr:nth-child(odd) {
    background: #f4fbfa;
}

.mint-post-table tbody tr:nth-child(even) {
    background: #fff;
}

.mint-post-table tbody td {
    padding: 13px 16px;
    color: #555;
    border-bottom: 1px solid #e8f0f0;
    vertical-align: middle;
}

/* ── Author Box ── */
.mint-post-author-box {
    display: flex;
    gap: 22px;
    background: #f8fbfc;
    border-radius: 14px;
    padding: 28px 26px;
    margin: 48px 0 36px;
    align-items: flex-start;
}

.mint-post-author-box img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid #25bdad;
}

.mint-post-author-box__info strong {
    display: block;
    font-size: 18px !important;
    color: #0f3d57;
    margin-bottom: 3px;
}

.mint-post-author-box__info span {
    display: block;
    font-size: 13px !important;
    color: #25bdad;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}

.mint-post-author-box__info p {
    font-size: 15px !important;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* ── Share Buttons ── */
.mint-post-share {
    margin: 36px 0;
    padding: 28px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.mint-post-share__label {
    display: block;
    font-size: 14px !important;
    font-weight: 700;
    color: #0f3d57;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.mint-post-share__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mint-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px !important;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    color: #fff;
}

.mint-share-btn:hover {
    opacity: 0.88;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.mint-share-btn--facebook  { background: #1877F2; }
.mint-share-btn--twitter   { background: #1DA1F2; }
.mint-share-btn--whatsapp  { background: #25D366; }
.mint-share-btn--linkedin  { background: #0A66C2; }
.mint-share-btn--instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

.mint-share-btn i {
    font-size: 16px !important;
}

/* ── Share trigger button (opens global modal) ── */
.mint-post-share-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: #0f3d57;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.mint-post-share-trigger:hover {
    background: #25bdad;
    transform: translateY(-2px);
}

.mint-post-share-trigger i {
    font-size: 15px;
}

/* ── Back to Blog ── */
.mint-post-back {
    margin-top: 10px;
    margin-bottom: 20px;
}

.mint-post-back__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #25bdad;
    font-weight: 700;
    font-size: 14px !important;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.mint-post-back__link:hover {
    gap: 12px;
    text-decoration: none;
    color: #1fa89a;
}

/* ── Sidebar ── */
.mint-post-sidebar {
    position: sticky;
    top: 30px;
}

.mint-sidebar-card {
    background: #fff;
    border-radius: 14px;
    padding: 26px 24px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.08);
    margin-bottom: 28px;
}

.mint-sidebar-card__title {
    font-size: 18px !important;
    font-weight: 700;
    color: #0f3d57;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8f5f4;
}

.mint-sidebar-post {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    text-decoration: none;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f0f0f0;
    transition: opacity 0.2s;
}

.mint-sidebar-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.mint-sidebar-post:hover {
    opacity: 0.8;
    text-decoration: none;
}

.mint-sidebar-post img {
    width: 80px;
    height: 65px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.mint-sidebar-post__tag {
    display: block;
    font-size: 11px !important;
    font-weight: 700;
    color: #25bdad;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 5px;
}

.mint-sidebar-post p {
    font-size: 14px !important;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

/* Sidebar CTA */
.mint-sidebar-cta {
    background: linear-gradient(135deg, #0f3d57 0%, #25bdad 100%);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    color: #fff;
}

.mint-sidebar-cta h3 {
    font-size: 20px !important;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.mint-sidebar-cta p {
    font-size: 14px !important;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
}

.mint-sidebar-cta__btn {
    display: inline-block;
    background: #fff;
    color: #0f3d57;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px !important;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.mint-sidebar-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    text-decoration: none;
    color: #0f3d57;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .mint-post-layout {
        grid-template-columns: 1fr 280px;
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .mint-post-hero {
        height: 360px;
    }

    .mint-post-hero__content h1 {
        font-size: 26px !important;
    }

    .mint-post-hero__content {
        padding: 0 20px 30px;
    }

    .mint-post-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 40px auto;
        padding: 0 20px;
    }

    .mint-post-sidebar {
        position: static;
    }

    .mint-post-content h2 {
        font-size: 22px !important;
    }

    .mint-share-btn span {
        display: none;
    }

    .mint-share-btn {
        padding: 10px 14px;
    }

    .mint-post-author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .mint-post-hero {
        height: 300px;
    }

    .mint-post-hero__content h1 {
        font-size: 22px !important;
    }

    .mint-post-hero__meta {
        gap: 10px;
        font-size: 12px !important;
    }
}

/* ── FAQ Section ── */
.mint-post-faq {
    margin: 10px 0 36px;
}

.mint-faq-item {
    border-left: 4px solid #25bdad;
    padding: 18px 20px;
    margin-bottom: 16px;
    background: #f8fbfc;
    border-radius: 0 10px 10px 0;
}

.mint-faq-item h3 {
    font-size: 17px !important;
    font-weight: 700;
    color: #0f3d57;
    margin-top: 0;
    margin-bottom: 8px;
}

.mint-faq-item p {
    font-size: 15px !important;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ── Sidebar Contact ── */
.mint-sidebar-contact p {
    font-size: 14px !important;
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.mint-sidebar-contact p:last-child {
    margin-bottom: 0;
}

.mint-sidebar-contact i {
    color: #25bdad;
    font-size: 15px !important;
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
}

.mint-sidebar-contact a {
    color: #0f3d57;
    text-decoration: none;
    font-weight: 600;
}

.mint-sidebar-contact a:hover {
    color: #25bdad;
}

/* ── Breadcrumb Bar (replaces hero image) ── */
.mint-breadcrumb-bar {
    background: #f8fbfc;
    border-bottom: 1px solid #e4eef2;
    padding: 32px 24px 28px;
}

.mint-breadcrumb-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Breadcrumb trail */
.mint-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 13px !important;
    margin-bottom: 14px;
    margin-top: 48px;
}

.mint-breadcrumb a {
    color: #25bdad;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.mint-breadcrumb a:hover {
    color: #1a9e90;
    text-decoration: underline;
}

.mint-breadcrumb i {
    color: #bbb;
    font-size: 11px !important;
}

.mint-breadcrumb span {
    color: #888;
    
}

/* Page title */
.mint-breadcrumb-bar__title {
    font-size: 32px !important;
    font-weight: 800;
    color: #0f3d57;
    line-height: 1.25;
    margin-bottom: 16px;
    
}

/* Meta row */
.mint-breadcrumb-bar__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px !important;
    color: #888;
}

.mint-breadcrumb-bar__meta i {
    color: #25bdad;
    margin-right: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .mint-breadcrumb-bar__title {
        font-size: 22px !important;
    }
    .mint-breadcrumb-bar__meta {
        gap: 12px;
        font-size: 12px !important;
    }
}

/* ── In-article Contact / Book Appointment Box ── */
.mint-post-contact-box {
    background: linear-gradient(135deg, #0f3d57 0%, #1a5a7a 100%);
    border-radius: 16px;
    padding: 36px 34px;
    margin: 44px 0;
    color: #fff;
}

.mint-post-contact-box h2 {
    font-size: 24px !important;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.3;
}

.mint-post-contact-box > p {
    font-size: 15px !important;
    line-height: 1.75;
    color: rgba(255,255,255,0.88);
    margin-bottom: 12px;
}

.mint-post-contact-box strong {
    color: #fff;
}

.mint-post-contact-details {
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 22px 24px;
    margin: 22px 0 20px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.mint-post-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px !important;
    color: rgba(255,255,255,0.88);
    line-height: 1.6;
}

.mint-post-contact-item i {
    color: #25bdad;
    font-size: 15px !important;
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.mint-post-contact-item a {
    color: #7ee8df;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.mint-post-contact-item a:hover {
    color: #fff;
    text-decoration: underline;
}

.mint-post-contact-cta-text {
    font-size: 15px !important;
    color: rgba(255,255,255,0.88);
    margin-bottom: 18px;
    line-height: 1.7;
}

.mint-post-contact-btn {
    display: inline-block;
    background: #25bdad;
    color: #fff;
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px !important;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.mint-post-contact-btn:hover {
    background: #1fa89a;
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff;
}

@media (max-width: 600px) {
    .mint-post-contact-box {
        padding: 26px 20px;
    }

    .mint-post-contact-box h2 {
        font-size: 20px !important;
    }

    .mint-post-contact-details {
        padding: 16px;
    }
}
