/* ==========================================================================
   Al Nomani Coupon Theme — Wirecutter-style single blog post
   Removes the boxed "card on gray background" look for single posts and
   replaces it with a clean, full-bleed, editorial layout.
   ========================================================================== */

/* Background + card removal for post types is now generated dynamically in
   functions.php (anct_generate_full_width_css) based on
   anct_full_width_post_types() — so new post types/plugins are covered
   automatically without editing this file. */

/* Accent bar above the title, like Wirecutter's black rule */
body.single-post .post-meta {
    padding-top: 18px;
    position: relative;
}
body.single-post .post-meta::before {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #14BA88;
    margin-bottom: 18px;
}

body.single-post .post-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #1c1f26;
    margin-bottom: 10px;
}

body.single-post .meta-line-2 {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 24px;
}

body.single-post .post-thumbnail {
    box-shadow: none;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 24px;
}

/* Author byline row — sits below the featured image, Wirecutter-style */
body.single-post .post-byline {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #eef1f0;
}
body.single-post .post-byline .author-avatar img {
    border-radius: 50%;
    display: block;
}
body.single-post .post-byline-data {
    flex: 1;
}
body.single-post .post-byline .author-name {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1c1f26;
}
body.single-post .post-byline .author-name a {
    color: #1c1f26;
    text-decoration: none;
}
body.single-post .post-byline .author-bio {
    font-size: 13px;
    color: #6b7280;
    margin-top: 4px;
    line-height: 1.5;
}
body.single-post .post-byline .comment-number {
    font-size: 12px;
    color: #6b7280;
    white-space: nowrap;
    flex-shrink: 0;
}

body.single-post .post-content {
    font-size: 17px;
    line-height: 1.8;
    color: #2b2f38;
    max-width: 760px;
}
body.single-post .post-content p {
    margin-bottom: 20px;
}
body.single-post .post-content h2,
body.single-post .post-content h3 {
    font-weight: 800;
    color: #1c1f26;
    margin: 32px 0 14px 0;
}

body.single-post .entry-tags {
    border-top: 1px solid #eef1f0;
    padding-top: 16px;
    margin-top: 24px;
}
body.single-post .entry-tags a {
    display: inline-block;
    background: #f2fbf8;
    color: #109672;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 14px;
    margin-right: 6px;
    text-decoration: none;
}

/* Comments area: keep it clean too */
body.single-post #comments {
    background: transparent;
    box-shadow: none;
    border-top: 1px solid #eef1f0;
    padding-top: 20px;
    margin-top: 24px;
}
