
  /* blogs */

  .blog-archive { max-width: 1200px; margin: 0 auto; padding: 32px 16px; }
.page-header .page-title { font-size: 2rem; margin: 0 0 3rem; text-align: center;font-weight: 500;}
.page-header .page-subtitle { margin: 0 0 1.25rem; opacity: .8; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1024px){ .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px){ .blog-grid { grid-template-columns: 1fr; } }

.blog-card { background:#fff; border:1px solid rgba(0,0,0,.06); border-radius:14px; overflow:hidden; transition:transform .15s, box-shadow .15s; }
.blog-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }

.thumb-wrap { display:block; aspect-ratio:16/9; overflow:hidden; }
.thumb-wrap img { width:100%; height:100%; object-fit:cover; display:block; }
.thumb-placeholder { width:100%; height:100%; background:#f2f2f2; }

.card-body { padding:14px 16px 18px; }
.entry-title { font-size:1.06rem; line-height:1.35; margin:8px 0 6px; }
.entry-title a { text-decoration:none; }
.entry-meta { font-size:.9rem; opacity:.85; display:flex; align-items:center; gap:6px; margin-bottom:8px; }
.entry-meta .dot { opacity:.6; }
.entry-excerpt { display: none;}

.pagination-wrap { display:flex; justify-content:center; gap:10px; margin:28px 0 8px; }
.pagination-wrap .page-numbers { display:inline-flex; align-items:center; justify-content:center; min-width:36px; padding:8px 12px; border-radius:10px; border:1px solid rgba(0,0,0,.1); text-decoration:none; }
.pagination-wrap .page-numbers.current { font-weight:700; border-color:rgba(0,0,0,.25); }
.post h2.entry-title a{
    font-weight: 500;
    font-size: 1rem;
}
.read-more{
    color: #FF7396 !important;
    font-size: .75rem;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
}
.read-more:hover{
    color: #FF7396;
}


/* Category Archive — Hero Header */
.category-archive-hero {
    background: linear-gradient(135deg, #fff5f8 0%, #fff0f9 100%);
    border-bottom: 1px solid #f5e0eb;
    padding: 56px 20px 48px;
    margin-bottom: 40px;
    text-align: center;
}

.category-archive-hero__inner {
    max-width: 600px;
    margin: 0 auto;
}

.category-archive-hero__label {
    display: inline-block;
    background: #ffe0ec;
    color: #FF7396;
    border-radius: 20px;
    padding: 3px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.category-archive-hero__title {
    font-size: 2rem;
    font-weight: 600;
    color: #111;
    margin: 0 0 12px;
    line-height: 1.2;
}

.category-archive-hero__desc {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0 0 20px;
}

@media (max-width: 576px) {
    .category-archive-hero {
        padding: 40px 16px 36px;
    }
    .category-archive-hero__title {
        font-size: 1.5rem;
    }
}

/* Author Archive — Profile Hero */
.author-profile-hero {
    text-align: center;
    padding: 56px 20px 48px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 40px;
}

.author-avatar-img {
    width: 96px !important;
    height: 96px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid #ffe4ec;
    display: block;
    margin: 0 auto;
}

.author-profile-hero .author-name {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 18px 0 6px;
    color: #111;
}

.author-profile-hero .author-role {
    color: #FF7396;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}

.author-profile-hero .author-bio {
    max-width: 520px;
    margin: 0 auto 20px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.65;
}

.author-profile-hero .author-post-count {
    display: inline-block;
    background: #fff0f4;
    color: #FF7396;
    border: 1px solid #ffccd7;
    border-radius: 20px;
    padding: 5px 16px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* blog detail page */

/* SUBTITLE */
.entry-subtitle {
    margin-top: 6px;
    font-size: 1.2rem;
    opacity: 0.8;
}

/* FEATURED IMAGE */
.featured-image img {
    width: 100%;
    border-radius: 12px;
    margin: 20px 0;
}

/* TAKWAEWAYS */
.key-takeaways {
    margin-top: 1rem;
    padding: 20px;
    background: #fafafa;
    border-radius: 12px;
}

.key-takeaways h2 {
    margin-bottom: 12px;
}

.key-takeaways ul {
    margin: 0;
    padding-left: 20px;
}

/* FAQ */
.post-faq {
    margin-top: 40px;
}

.post-faq h2 {
    margin-bottom: 20px;
}

.faq-item {
    padding: 14px 0;
    border-top: 1px solid #eee;
}

.faq-item h3 {
    font-size: 1.1rem;
}

.faq-answer {
    margin-top: 10px;
    opacity: 0.9;
}

.featured-image-top{
    position: relative;
    padding-top: 56.25%;
    border-radius: 30px;
    overflow: hidden;
}

/* FEATURED IMAGE AT TOP */
.featured-image-top img {
    position: absolute;
    height: auto;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.entry-header{
    padding-right: 7.5rem;
    padding-left: 7.5rem;
}
.single-blog .entry-title{
    font-style: normal;
    font-weight: 500;
    line-height: 1.25;
    text-transform: None;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.single-blog .entry-subtitle{
     text-align: center;
     color: #000;
     margin-bottom: .5rem;
}

.single-blog .entry-meta{
    justify-content: center;
    color: #919191;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .125rem;
    border-bottom: .063rem solid #c6c6c6;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;

}
.post-author-box,
.comments-area{
    display: none;
}

.single-blog .entry-content{
    max-width: 1000px;
    margin: 0 auto;
}

.single-blog .entry-content h1,
.single-blog .entry-content h2,
.single-blog .entry-content h3,
.single-blog .entry-content h4,
.single-blog .entry-content h5,
.single-blog .entry-content h6{
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 1rem;
}

.single-blog .entry-content ul{
    margin-left: 0;
}

.single-post .nav-links a{
    color: #919191;
    font-weight: 400;
    font-size: .875rem;
    max-width: 90%;
    display: inline-block;

}

.single-post .nav-links a:hover{
    color: #000;
}



@media screen and (max-width: 1199px) {
    .entry-header{
        padding: 0;
    }
}
@media screen and (max-width: 1024px) {
    .single-blog .entry-content{
        max-width: 100%;
    }
}
@media screen and (max-width: 576px) {
    .post h2.entry-title a{
        font-size: .875rem;
    }
    .entry-meta{
        font-size: .75rem;
    }
    .blog-card{
        margin-bottom: 0 !important;
    }
    .blog-grid{
        gap:1rem
    }
    .page-header .page-title{
        margin-bottom: 1.5rem;
    }
    .single-blog .entry-title{
        font-size: 1.8rem;
    }
    .single-blog .entry-meta{
        display: block;
        font-size: .75rem;
    }
    .single-blog .entry-meta span{
        display: block;
        text-align: center;
        padding-bottom: .3rem;
    }
    .single-blog .entry-meta span.dot{
        display: none;
    }
    .single-blog .entry-meta span:last-child{
        padding-bottom: 0;
    }
    .single-blog .entry-content h1,
    .single-blog .entry-content h2,
    .single-blog .entry-content h3{
        font-size: 1.2rem;
    }

    .single-blog .entry-content p,
    .single-blog .entry-content ul{
        font-size: .875rem;
        line-height: 1.6rem;
    }
    .faq-item h3{
        margin-bottom: 0 !important;
    }
    .faq-answer{
        margin-top: 0;
    }
}

/* =============================================
   Single Blog Post — scoped to body.single-post
   ============================================= */

/* Base reading typography */
.single-post .single-blog .entry-content {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: #1f1f1f;
    padding-top: 10px;
}

.single-post .single-blog .entry-content p {
    margin: 0 0 1.4rem;
}

/* Headings inside content */
.single-post .single-blog .entry-content h2 {
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 2.75rem 0 0.875rem;
    color: #111;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffe0ec;
}

.single-post .single-blog .entry-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.35;
    margin: 2.25rem 0 0.625rem;
    color: #111;
}

.single-post .single-blog .entry-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 1.75rem 0 0.5rem;
    color: #222;
}

/* Unordered lists — pink bullet */
.single-post .single-blog .entry-content ul {
    list-style: none;
    margin: 0 0 1.4rem;
    padding: 0;
}

.single-post .single-blog .entry-content ul li {
    padding-left: 1.4rem;
    position: relative;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.single-post .single-blog .entry-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FF7396;
    flex-shrink: 0;
}

/* Ordered lists */
.single-post .single-blog .entry-content ol {
    margin: 0 0 1.4rem 1.25rem;
    padding: 0;
}

.single-post .single-blog .entry-content ol li {
    margin-bottom: 0.5rem;
    padding-left: 0.25rem;
    line-height: 1.7;
}

/* Links */
.single-post .single-blog .entry-content a {
    color: #FF7396;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

.single-post .single-blog .entry-content a:hover {
    color: #d9496e;
}

/* Blockquote */
.single-post .single-blog .entry-content blockquote {
    border-left: 3px solid #FF7396;
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    background: #fff5f8;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: #444;
}

.single-post .single-blog .entry-content blockquote p {
    margin-bottom: 0;
}

/* Bold */
.single-post .single-blog .entry-content strong,
.single-post .single-blog .entry-content b {
    font-weight: 600;
    color: #111;
}

/* Inline code */
.single-post .single-blog .entry-content code {
    background: #f4f4f4;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.875em;
    color: #d63384;
}

/* HR divider */
.single-post .single-blog .entry-content hr {
    border: none;
    border-top: 1px solid #f0f0f0;
    margin: 2.5rem 0;
}

/* Images inside content */
.single-post .single-blog .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.5rem 0;
    display: block;
}

/* Tables */
.single-post .single-blog .entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9375rem;
    border-radius: 10px;
    overflow: hidden;
}

.single-post .single-blog .entry-content th {
    background: #fff0f5;
    color: #111;
    font-weight: 600;
    padding: 10px 14px;
    text-align: left;
    border-bottom: 2px solid #ffccd7;
}

.single-post .single-blog .entry-content td {
    padding: 10px 14px;
    border-bottom: 1px solid #f5f5f5;
    vertical-align: top;
    color: #333;
}

.single-post .single-blog .entry-content tr:last-child td {
    border-bottom: none;
}

/* Key Takeaways */
.single-post .key-takeaways {
    background: #fff5f8;
    border: 1px solid #ffd6e3;
    border-radius: 12px;
    padding: 22px 26px;
    margin: 0.5rem 0 2rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.single-post .key-takeaways h2 {
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #FF7396 !important;
    margin-bottom: 14px !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.single-post .key-takeaways ul {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
}

.single-post .key-takeaways ul li {
    padding-left: 1.5rem !important;
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #333;
}

.single-post .key-takeaways ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF7396;
    font-weight: 700;
    background: none;
    width: auto;
    height: auto;
    border-radius: 0;
    top: 0;
}

/* FAQ section */
.single-post .post-faq {
    max-width: 720px;
    margin: 2.5rem auto 0;
}

.single-post .post-faq h2 {
    font-size: 1.45rem;
    font-weight: 600;
    margin-bottom: 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffe0ec;
    color: #111;
}

.single-post .faq-item {
    border-top: 1px solid #f0f0f0;
    padding: 18px 0;
}

.single-post .faq-item:last-child {
    border-bottom: 1px solid #f0f0f0;
}

.single-post .faq-item h3 {
    font-size: 1rem !important;
    font-weight: 600;
    color: #111;
    margin: 0 0 8px !important;
    line-height: 1.4;
}

.single-post .faq-answer {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.75;
    margin-top: 0;
}

.single-post .faq-answer p {
    margin-bottom: 0;
}

/* Mobile overrides */
@media (max-width: 768px) {
    .single-post .single-blog .entry-content {
        font-size: 1rem;
        line-height: 1.75;
    }

    .single-post .single-blog .entry-content h2 {
        font-size: 1.25rem;
        margin-top: 2rem;
    }

    .single-post .single-blog .entry-content h3 {
        font-size: 1.05rem;
    }

    .single-post .key-takeaways {
        padding: 18px 18px;
    }

    .single-post .post-faq {
        margin-top: 2rem;
    }
}