.product-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #fafafa, #ffffff);
    border-radius: 8px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.product-title {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #2d2d2d;
    font-weight: 600;
}

.product-price {
    color: #2563EB;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Categories */
.categories-list {
    list-style: none;
}

.categories-list li {
    margin-bottom: 0.5rem;
}

.categories-list a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    background: #fefefe;
}

/* Header */
header {
    background: #ffffff;
    color: #2d2d2d;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-bottom: 1px solid #f0f0f0;
}

.header {
    top: 0;
    position: sticky;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 50px;
}

.logo img {
    width: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #2563EB;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: #1B2A4C;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, rgba(37,99,235,0.03), rgba(37,99,235,0.05)), 
                linear-gradient(135deg, #fdfcfc, #ffffff);
    color: #2d2d2d;
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 2rem;
}

.hero-banner .hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2563EB;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-banner p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #666;
    font-weight: 300;
}

/* Main Content Layout */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

/* Left ad rail (article pages only). Mirror image of the right sidebar: a
   standalone column beside the article card, top-aligned, static (not sticky,
   does not follow scroll). Rendered in the DOM only on article pages (base.templ
   gates on PageHeaderData.ShowLeftRail) and hidden below the desktop breakpoint,
   where the article keeps the 2-column [article][sidebar] layout and the mobile
   inline unit shows instead. At >=1200px the container widens and switches to
   three columns; the middle track is minmax(0,1fr) so it can shrink (prevents a
   grid blow-out / horizontal scroll from wide article content). */
.left-rail { display: none; }
.left-rail > .pf-ad { margin: 0; }

@media (min-width: 1200px) {
    .main-container.has-left-rail {
        max-width: 1440px;
        grid-template-columns: 300px minmax(0, 1fr) 300px;
        gap: 2.5rem;
    }
    .main-container.has-left-rail .left-rail {
        display: block;
        align-self: stretch; /* full column height so the card can stick within it */
    }
    /* The card follows the scroll within its own rail (owner request 2026-07-07).
       Nothing else lives in the rail, so sticking covers nothing. Offset clears
       the sticky site header. */
    .main-container.has-left-rail .left-rail > .pf-ad {
        position: sticky;
        top: 141px;
    }
}

/* Content Area */
.content-area {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* Featured Article */
.featured-article {
    position: relative;
    height: 400px;
    background: linear-gradient(45deg, #fafafa, #ffffff);
    display: flex;
    align-items: end;
    color: #2d2d2d;
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.featured-content {
    padding: 2rem;
    background: linear-gradient(transparent, rgba(255,255,255,0.95));
    width: 100%;
    color: #2d2d2d;
}

.featured-article h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #2563EB;
}

.featured-article .meta {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    color: #666;
}

/* Article Grid */
.articles-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #f5f5f5;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(37,99,235,0.12);
}

.article-image {
    max-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fafafa, #ffffff);
}

.article-image img {
    width: 100%;
    object-fit: cover;
}

/* Article Content */
.article-content {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.home-article-content {
    padding: 1rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.article-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e8e8e8;
}

.home-article-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2d2d2d;
    font-weight: 600;
}

.article-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
    line-height: 1.2;
    font-weight: 700;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.9rem;
    color: #2d2d2d;
    margin-bottom: 1rem;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(45deg, #2563EB, #38BDF8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.article-excerpt {
    font-size: 1.1rem;
    color: #2d2d2d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.home-article-excerpt {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: #fdf5f8;
    color: #2563EB;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #2563EB;
    color: white;
}

/* Featured Image */
.featured-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    margin-bottom: 2rem;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    object-fit: contain;
    max-height: 800px;
}

/* Article Body */
.article-body {
    padding: 0 2rem 2rem;
}

.article-body h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #2563EB;
    position: relative;
    padding-left: 1rem;
    font-weight: 600;
}

.article-body h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #2563EB, #38BDF8);
    border-radius: 2px;
}

.article-body h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
    color: #2d2d2d;
    font-weight: 600;
}

.article-body p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.article-body ul, .article-body ol {
    margin: 1rem 0 1.5rem 2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-body blockquote {
    background: #fdfcfd;
    border-left: 4px solid #2563EB;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

/* Inline Ad Spaces */
.inline-ad {
    background: #fafafa;
    border: 2px dashed #e8e8e8;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.inline-ad:hover {
    background: #f5f5f5;
}

/* Affiliate Product Box */
.affiliate-box {
    background: #ffffff;
    border: 2px solid #f5f5f5;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.affiliate-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 4px;
    background: linear-gradient(90deg, #2563EB, #38BDF8, #EFF4FF);
}

.affiliate-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.affiliate-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #2563EB, #38BDF8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.affiliate-title {
    font-size: 1.2rem;
    color: #2d2d2d;
    font-weight: 600;
}

.affiliate-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.affiliate-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.affiliate-price {
    font-size: 1.3rem;
    color: #2563EB;
    font-weight: bold;
}

.affiliate-btn {
    background: linear-gradient(135deg, #2563EB, #38BDF8);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.affiliate-btn:hover {
    background: linear-gradient(135deg, #38BDF8, #EFF4FF);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37,99,235,0.3);
}

/* Table of Contents */
.table-of-contents {
    background: #fdfcfd;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #2563EB;
}

.toc-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d2d2d;
}

.toc-list {
    list-style: none;
    margin: 0;
}

.toc-list li {
    margin-bottom: 0.5rem;
}

.toc-list a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.toc-list a:hover {
    color: #2563EB;
}

/* Related Posts */
.related-post {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.3s ease;
    cursor: pointer;
}

.related-post:hover {
    background: #fdfcfd;
    margin: 0 -1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
}

.related-post:last-child {
    border-bottom: none;
}

.related-thumbnail {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #fafafa, #ffffff);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563EB;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.related-content h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: #2d2d2d;
    line-height: 1.3;
}

.related-date {
    font-size: 0.8rem;
    color: #999;
}

/* Article Navigation */
.article-navigation {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2d2d2d;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
}

.nav-link:hover {
    background: #fdfcfd;
    border-color: #e8e8e8;
}

.nav-direction {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.nav-title {
    font-weight: 600;
    line-height: 1.3;
}

/* Author Bio */
.author-bio {
    background: #fdfcfd;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.author-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #2563EB, #38BDF8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2d2d2d;
}

.author-description {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.author-social {
    display: flex;
    gap: 1rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #999;
}

.read-more {
    color: #2563EB;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #1B2A4C;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #f5f5f5;
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
    border-bottom: 2px solid #2563EB;
    padding-bottom: 0.5rem;
    font-weight: 600;
}

/* Ad Spaces */
.ad-space {
    background: #fafafa;
    border: 2px dashed #e8e8e8;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.ad-space:hover {
    background: #f5f5f5;
}

.ad-space.banner {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.ad-space.square {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Popular Posts */
.popular-post {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.3s ease;
}

.popular-post:hover {
    background: #fdfcfd;
    margin: 0 -1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
}

.popular-post:last-child {
    border-bottom: none;
}

.popular-thumbnail {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #fafafa, #ffffff);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563EB;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.popular-content h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: #2d2d2d;
    line-height: 1.3;
}

.popular-date {
    font-size: 0.8rem;
    color: #999;
}

/* Newsletter */
.newsletter-widget {
    background: linear-gradient(135deg, #2563EB, #38BDF8);
    color: white;
    text-align: center;
}

.newsletter-widget .widget-title {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}

.newsletter-form {
    margin-top: 1rem;
}

.newsletter-form input {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 25px;
    margin-bottom: 1rem;
    outline: none;
}

.newsletter-form button {
    width: 100%;
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.75rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: rgba(255,255,255,0.3);
}

/* Affiliate Product Cards */
.affiliate-products {
    margin: 2rem 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-3px);
    border-color: #e8e8e8;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.product-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #fafafa, #ffffff);
    border-radius: 8px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.product-title {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #2d2d2d;
    font-weight: 600;
}

.product-price {
    color: #2563EB;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Categories */
.categories-list {
    list-style: none;
}

.categories-list li {
    margin-bottom: 0.5rem;
}

.categories-list a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.categories-list a:hover {
    color: #2563EB;
}

.post-count {
    background: #f0f4f1;
    color: #2563EB;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2d2d2d, #3a3a3a);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

footer a {
    color: #EFF4FF;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #EFF4FF;
}

/* Contact Form Styles */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h1 {
    font-size: 2.5rem;
    color: #2563EB;
    margin-bottom: 1rem;
    position: relative;
    font-weight: 700;
}

.contact-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #2563EB, #38BDF8);
    border-radius: 2px;
}

.contact-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    border: 1px solid #e8e8e8;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563EB, #38BDF8, #EFF4FF);
}

.success-message {
    background: linear-gradient(135deg, #2563EB, #38BDF8);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.error-message {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
    display: none;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #ccc;
}

.submit-btn {
    background: linear-gradient(135deg, #38BDF8, #EFF4FF);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,99,235,0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn.loading {
    background: #ccc;
    cursor: not-allowed;
    position: relative;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Breadcrumbs */
.breadcrumbs {
    background: #f8faf8;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    font-size: 14px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    margin-bottom: 0;
    display: flex;
    justify-content: flex-start;
}

.breadcrumbs a {
    color: #2563EB;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 4px 6px;
    border-radius: 4px;
    position: relative;
}

.breadcrumbs a:hover {
    color: #1B2A4C;
    background-color: rgba(37,99,235,0.1);
    text-decoration: underline;
}

.breadcrumbs a:focus {
    outline: 2px solid #2563EB;
    outline-offset: 2px;
}

.breadcrumbs > span {
    color: #666;
    font-weight: 500;
}

.breadcrumbs > * {
    margin-right: 8px;
}

.breadcrumbs > *:last-child {
    margin-right: 0;
}

/* Separator styling */
.breadcrumbs > :not(:last-child):after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid #2563EB;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    margin-left: 8px;
    vertical-align: middle;
    opacity: 0.6;
}

/* Pagination Styles */
.pagination-wrapper {
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #e8e8e8;
}

.pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0.5rem;
    border: 1px solid #e8e8e8;
    background: white;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.pagination-btn:hover {
    background: #f8faf8;
    border-color: #d0d0d0;
    color: #2563EB;
    transform: translateY(-1px);
}

.pagination-btn.active {
    background: linear-gradient(135deg, #2563EB, #38BDF8);
    color: white;
    border-color: #2563EB;
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-btn.prev,
.pagination-btn.next {
    padding: 0.5rem 1rem;
    font-weight: 600;
}

.pagination-ellipsis {
    padding: 0.5rem;
    color: #ccc;
    font-weight: bold;
}

/* Utility Classes */
.no-before::before {
    content: none !important;
    display: none !important;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-container {
        grid-template-columns: 1fr;
        padding: 0 0.5rem;
        gap: 2rem;
    }

    .article-body {
        padding: 1rem 0.5rem;
    }

    .header nav {
        display: flex;
        flex-wrap: nowrap;
    }
    
    .hero-banner .hero-title {
        font-size: 2rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-header h1 {
        font-size: 2rem;
    }

    .pagination {
        padding: 0.75rem 1rem;
        gap: 0.25rem;
    }
    
    .pagination-btn {
        min-width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
    
    .pagination-btn.prev,
    .pagination-btn.next {
        padding: 0.5rem 0.75rem;
    }

    .article-navigation {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes spin {
    0% { 
        transform: translate(-50%, -50%) rotate(0deg); 
    }
    100% { 
        transform: translate(-50%, -50%) rotate(360deg); 
    }
}

.article-card {
    animation: fadeIn 0.6s ease forwards;
}

/* Additional Beauty-Specific Styles */
.beauty-rating {
    display: flex;
    gap: 0.25rem;
    color: #ffd700;
    font-size: 1.2rem;
}

.ingredient-list {
    background: #f8faf8;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #2563EB;
    margin: 1rem 0;
}

.price-tag {
    display: inline-block;
    background: linear-gradient(135deg, #2563EB, #38BDF8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.skin-type-badge {
    display: inline-block;
    background: #f0f4f1;
    color: #2563EB;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0.25rem;
}

.product-highlight {
    background: #f8faf8;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    margin: 1.5rem 0;
}

.product-highlight h4 {
    color: #2563EB;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Special promotional banner */
.promo-banner {
    background: linear-gradient(135deg, #2563EB, #38BDF8);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem 0;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37,99,235,0.3);
}

/* Bottom Article CTA */
.article-bottom-cta {
    display: flex;
    gap: 2rem;
    background: linear-gradient(135deg, #fff 0%, #fffafc 100%);
    border: 2px solid #ffe8ec;
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0 2rem;
    box-shadow: 0 4px 20px rgba(37,99,235,0.12);
    position: relative;
    overflow: hidden;
}

.article-bottom-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #38BDF8, #EFF4FF, #EFF4FF);
}

.cta-image {
    flex-shrink: 0;
    width: 220px;
    height: 220px;
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(37,99,235,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.cta-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cta-title {
    font-size: 1.6rem;
    color: #2d2d2d;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.cta-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cta-footer {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cta-price {
    font-size: 2rem;
    color: #38BDF8;
    font-weight: bold;
}

.cta-button {
    background: linear-gradient(135deg, #38BDF8 0%, #EFF4FF 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 2px 8px rgba(37,99,235,0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, #ff5b8d 0%, #ff93b1 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37,99,235,0.4);
}

.cta-button:active {
    transform: translateY(0);
}

/* Amazon Prime bounty nudge - quiet footer-of-article CTA, not a banner */
.prime-cta {
    margin-top: 2rem;
    padding: 0.9rem 1.2rem;
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}

.prime-cta p {
    margin: 0;
}

.prime-cta a {
    color: #38BDF8;
    font-weight: 600;
    text-decoration: underline;
}

.prime-cta a:hover {
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .article-bottom-cta {
        flex-direction: column;
        padding: 1.5rem;
    }

    .cta-image {
        width: 100%;
        max-width: 300px;
        height: 200px;
        margin: 0 auto;
    }

    .cta-title {
        font-size: 1.4rem;
    }

    .cta-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .cta-price {
        text-align: center;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: #2563EB;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: #ffffff;
        flex-direction: column;
        padding: 5rem 2rem 2rem 2rem;
        gap: 0;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        color: #2d2d2d;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        color: #2563EB;
        padding-left: 0.5rem;
    }
    
    /* Hamburger animation when active */
    .mobile-menu-toggle.active .hamburger:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-menu-toggle.active .hamburger:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Overlay for mobile menu */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .nav-overlay.active {
        display: block;
        opacity: 1;
    }
    
    nav {
        padding: 0 1rem;
    }
}
/* =========================================================
   keyword-guide CTAs (product-actions + buttons + in-content links)
   Added 2026-06-25 for the keyword-guide pipeline. Beauty palette:
   brand pink #2563EB / #1B2A4C, pink accents, Amazon yellow for CTA.
   product-highlight is already styled earlier in this file.
   ========================================================= */
.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    background: #EFF4FF;
    border: 1px solid #ffe1e8;
    border-radius: 12px;
}
.btn-amazon, .btn-review {
    padding: 0.7rem 1.4rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}
.btn-amazon {
    background: #ffd814;
    color: #0f1111;
    border: 1px solid #e3b400;
}
.btn-amazon:hover {
    background: #f7ca00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.btn-review {
    background: #fff;
    color: #2563EB;
    border: 1px solid #2563EB;
}
.btn-review:hover { background: #EFF4FF; }

/* In-content links (article body): underlined brand pink, distinct from CTAs */
.article-body a {
    color: #2563EB;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s ease;
}
.article-body a:hover { color: #1B2A4C; }
/* Buttons must override the generic .article-body a colour (higher specificity). */
.article-body .btn-amazon { color: #0f1111; text-decoration: none; }
.article-body .btn-review { color: #2563EB; text-decoration: none; }
.article-body .btn-amazon:hover { color: #0f1111; }
.article-body .btn-review:hover { color: #2563EB; }
/* .cta-button keeps its white text + gradient inside article body (beats .article-body a). */
.article-body .cta-button { color: #fff; text-decoration: none; }
.article-body .cta-button:hover { color: #fff; }

/* =========================================================
   Image-backed hero banner (RESTORED 2026-07-02)
   Regression: the Jun 29 "repair template build" stripped the
   original beauty image hero back to a plain gradient. This
   restores the full-bleed photo hero (pink-sofa) with a
   brand-pink overlay + readable white text. Compact strip on
   article pages via CompactHero. Overrides the plain
   .hero-banner defined earlier.
   ========================================================= */

.hero-banner--image {
    position: relative;
    overflow: hidden;
    padding: 0;
    margin-bottom: 2rem;
    background: #4a1f30;
    height: 420px;
    isolation: isolate;
}

.hero-banner--image .hero-banner__picture,
.hero-banner--image .hero-banner__picture img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
}

.hero-banner--image .hero-banner__img {
    object-fit: cover;
    object-position: 50% 50%;
}

.hero-banner--image .hero-banner__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg,
        rgba(212, 82, 124, 0.55) 0%,
        rgba(212, 82, 124, 0.30) 45%,
        rgba(80, 20, 45, 0.52) 100%);
}

.hero-banner--image .hero-banner__inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1.5rem;
}

.hero-banner--image h1 {
    color: #ffffff;
    font-size: 3.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.4);
    line-height: 1.15;
}

.hero-banner--image p {
    color: #ffffff;
    font-size: 1.2rem;
    max-width: 640px;
    margin: 0 auto;
    font-weight: 400;
    opacity: 1;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55), 0 1px 2px rgba(0, 0, 0, 0.45);
    line-height: 1.5;
}

/* Compact strip for article pages */
.hero-banner--image.hero-banner--compact {
    height: 120px;
    margin-bottom: 1rem;
}

.hero-banner--image.hero-banner--compact .hero-banner__inner {
    padding: 0.5rem 1.5rem;
}

.hero-banner--image.hero-banner--compact h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

.hero-banner--image.hero-banner--compact p {
    display: none;
}

/* Mobile overrides */
@media (max-width: 768px) {
    .hero-banner--image {
        height: 280px;
        margin-bottom: 1.25rem;
    }

    .hero-banner--image .hero-banner__img {
        object-position: 50% 50%;
    }

    .hero-banner--image h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .hero-banner--image p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .hero-banner--image.hero-banner--compact {
        height: 80px;
        margin-bottom: 0.75rem;
    }

    .hero-banner--image.hero-banner--compact h1 {
        font-size: 1.25rem;
    }
}

/* =====================================================================
   Prep & Flow — on-site "Featured" cookbook ad (variant C, editorial
   hybrid). Adapted from ads/etsy-cycle-cookbook/mocks/ads.css. Every rule
   is scoped under .pf-ad so nothing leaks into the rest of the site. Three
   placements: .pf--feature (article grid), .pf--left (desktop card in the
   article page's left rail), .pf--mobile (mobile inline strip inside
   article content).
   ===================================================================== */
.pf-ad {
  --pf-green:#3c4a39;
  --pf-cream:#f3efe4;
  --pf-terra:#c05a45;
  --pf-terra-d:#a5482f;
  --pf-ink:#2d2d2d;
  --pf-radius:12px;
  --pf-shadow:0 2px 12px rgba(0,0,0,.06);
  --pf-serif:'Playfair Display', Georgia, 'Times New Roman', serif;

  display:block;
  text-decoration:none;
  color:var(--pf-ink);
  font-family:'Montserrat','Helvetica Neue',Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
}
a.pf-ad, a.pf-ad:hover { text-decoration:none; color:var(--pf-ink); }
.pf-ad *, .pf-ad *::before, .pf-ad *::after { box-sizing:border-box; }
.pf-ad img { display:block; }
/* .pf-media / .pf-body are <span>s (valid inside <a>); force block so
   layout + aspect-ratio apply outside the grid placements too. */
.pf-ad .pf-media, .pf-ad .pf-body { display:block; }
.pf-ad:focus-visible { outline:2px solid var(--pf-terra); outline-offset:3px; }

/* ---- shared atoms ------------------------------------------------- */
.pf-flag {
  display:inline-flex; align-items:center; gap:.42em;
  font-size:.64rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.15em; line-height:1;
}
.pf-flag svg { width:1.15em; height:1.15em; flex:none; }

.pf-head { margin:0; }
.pf-tag  { margin:0; font-size:.92rem; line-height:1.35; }
.pf-fact { margin:0; font-size:.76rem; letter-spacing:.02em; }

/* ---- discount block (badge + struck price + footnote) ------------- */
/* The deal now leads as a solid pill so it reads before anything else: the
   badge is the terracotta focal point near the top of the card, trailed by
   quiet "Limited offer" microcopy. */
.pf-deal  { margin:0; display:flex; align-items:center; flex-wrap:wrap; gap:.55em; }
.pf-badge {
  display:inline-flex; align-items:center;
  font-weight:800; font-size:.98rem; letter-spacing:.03em; line-height:1;
  padding:.5em .85em; border-radius:8px;
}
.pf-deal-micro {
  font-size:.62rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.14em; line-height:1;
}
/* Price: the discounted figure is enlarged + heavy so it dominates the struck
   original. Per-placement now-price sizes below keep it under each headline. */
.pf-price { margin:0; display:flex; align-items:baseline; gap:.5em; }
.pf-was   { text-decoration:line-through; font-size:.88rem; }
.pf-now   { font-size:1.22rem; font-weight:800; letter-spacing:-.01em; }
/* Footnote: honest, quiet - roughly the size of the FEATURED eyebrow. */
.pf-note  { margin:0; font-size:.66rem; line-height:1.3; letter-spacing:.03em; }

.pf-cta {
  display:inline-flex; align-items:center; gap:.5em;
  font-family:'Montserrat',sans-serif; font-weight:600; font-size:.88rem;
  padding:.72em 1.35em; border-radius:24px; line-height:1;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.pf-arrow { transition:transform .2s ease; }
.pf-ad:hover .pf-cta { transform:translateY(-2px); }
.pf-ad:hover .pf-arrow { transform:translateX(3px); }

/* ---- PLACEMENT: FEATURE CARD (horizontal, full width in article grid) ---- */
.pf--feature {
  position:relative;
  display:grid;
  grid-template-columns:minmax(190px,38%) 1fr;
  border-radius:var(--pf-radius);
  overflow:hidden;
  box-shadow:var(--pf-shadow);
}
.pf--feature .pf-media { position:relative; min-height:236px; background:var(--pf-green); }
/* contain so the whole tablet shows on the green panel (no cropped bezel edge) */
.pf--feature .pf-media img { position:absolute; inset:0; width:100%; height:100%; object-fit:contain; padding:1.4rem; }
.pf--feature .pf-body {
  padding:1.7rem 1.9rem;
  display:flex; flex-direction:column; gap:.72rem; justify-content:center;
}
.pf--feature .pf-head { font-size:1.55rem; line-height:1.16; }
.pf--feature .pf-now { font-size:1.5rem; }
.pf--feature .pf-cta { align-self:flex-start; margin-top:.35rem; }

/* ---- PLACEMENT: LEFT RAIL (vertical card in the article page's left rail,
   the mirror image of the right sidebar). Standalone card OUTSIDE the article
   card - prose never wraps around it. Static: NOT floated, NOT sticky, does not
   follow scroll. Visibility is owned by .left-rail (shown only at the rail
   breakpoint); the card itself is always block. ---- */
.pf--left {
  display:block;
  border-radius:var(--pf-radius);
  overflow:hidden;
  box-shadow:var(--pf-shadow);
}
.pf--left .pf-media { position:relative; aspect-ratio:1/1; background:var(--pf-cream); }
.pf--left .pf-media img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.pf--left .pf-body {
  padding:1.2rem 1.3rem 1.35rem;
  display:flex; flex-direction:column; gap:.55rem;
}
.pf--left .pf-head { font-size:1.24rem; line-height:1.18; }
.pf--left .pf-cta { justify-content:center; width:100%; margin-top:.3rem; }

/* ---- PLACEMENT: MOBILE INLINE (strip between content sections) ----
   Hidden on desktop; revealed at <=768px. */
.pf--mobile {
  display:none;
  grid-template-columns:36% 1fr;
  border-radius:var(--pf-radius);
  overflow:hidden;
  box-shadow:var(--pf-shadow);
  margin:1.9rem 0;
}
.pf--mobile .pf-media { position:relative; background:var(--pf-cream); }
/* contain the square brand tile so the full logo shows in the tall strip */
.pf--mobile .pf-media img { position:absolute; inset:0; width:100%; height:100%; object-fit:contain; padding:.7rem; }
.pf--mobile .pf-body {
  padding:.95rem 1.05rem 1.05rem;
  display:flex; flex-direction:column; gap:.45rem;
}
.pf--mobile .pf-head { font-size:1.04rem; line-height:1.2; }
.pf--mobile .pf-tag  { font-size:.8rem; line-height:1.3; }
.pf--mobile .pf-fact { font-size:.7rem; }
.pf--mobile .pf-badge { font-size:.9rem; padding:.45em .75em; }
.pf--mobile .pf-was  { font-size:.8rem; }
.pf--mobile .pf-now  { font-size:1.04rem; }
.pf--mobile .pf-cta  { align-self:flex-start; font-size:.78rem; padding:.62em 1.1em; margin-top:.15rem; }

@media (max-width:768px) {
  .pf--mobile { display:grid; }
}

/* ---- VARIANT C — EDITORIAL HYBRID (cream card + green serif + terra CTA) ---- */
.pf-c { background:var(--pf-cream); color:#40372e; border:1px solid #e6dfcd; }
.pf-c .pf-flag {
  color:var(--pf-terra);
  padding-bottom:.5em; border-bottom:1px solid #ddd2bb; margin-bottom:.15rem;
}
.pf-c .pf-head { font-family:var(--pf-serif); font-weight:600; color:var(--pf-green); }
.pf-c .pf-tag  { font-family:var(--pf-serif); font-style:italic; color:var(--pf-terra); }
.pf-c .pf-fact { color:#7c7160; font-weight:600; }
.pf-c .pf-cta  { background:var(--pf-terra); color:#fff7f2; box-shadow:0 2px 8px rgba(192,90,69,.25); }
.pf-c:hover .pf-cta { background:var(--pf-terra-d); box-shadow:0 5px 16px rgba(192,90,69,.35); }
/* Discount: solid terracotta badge (reuses the CTA fill) so it's the first
   thing read; "Limited offer" microcopy in terracotta; the was-price struck
   and muted, the enlarged now-price in the brand green. Footnote muted. */
.pf-c .pf-badge { background:var(--pf-terra); color:#fff7f2; box-shadow:0 2px 8px rgba(192,90,69,.25); }
.pf-c .pf-deal-micro { color:var(--pf-terra); }
.pf-c .pf-was  { color:#9a8f7d; }
.pf-c .pf-now  { color:var(--pf-green); }
.pf-c .pf-note { color:#9a8f7d; }

@media (prefers-reduced-motion:reduce) {
  .pf-ad *, .pf-ad *::before, .pf-ad *::after { transition:none !important; }
}
