/* =================================================================
   BLOG STYLES - RED MEBLE
   ================================================================= */

/* --- Blog Index Page --- */
.blog-hero {
    padding: 2rem 0 !important;
}

.blog-hero h1 {
    color: #fff5ec;
    max-width: none;
}

.blog-hero .hero-breadcrumbs,
.blog-hero .hero-breadcrumbs a {
    color: rgba(255, 236, 224, 0.82);
}

.blog-hero .hero-breadcrumbs a:hover {
    color: #ffffff;
}

.blog-hero .intro-excerpt p {
    color: rgba(255, 241, 230, 0.88);
}

.blog-intro {
    max-width: 65ch;
    margin: 0 auto 2rem auto;
    text-align: center;
    font-size: 1.05rem;
    color: var(--tone-body);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: var(--tone-paper-2);
    border: 1px solid var(--tone-line);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 34px rgba(41, 29, 29, 0.1);
}

.blog-card-media {
    aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: cover;
    border-bottom: 1px solid var(--tone-line);
}

.blog-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--tone-body);
}

.blog-card-category {
    color: var(--tone-accent);
}

.blog-card-title {
    font-size: 1.25rem;
    line-height: 1.35;
    font-weight: 700;
    color: var(--tone-ink);
    margin: 0 0 12px 0;
    flex-grow: 1;
}

.blog-card-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--tone-body);
    margin-bottom: 16px;
}

.blog-card-cta {
    margin-top: auto;
    color: var(--tone-accent);
    font-weight: 700;
    text-decoration: none;
}

/* --- Article Page --- */
.article-section {
    padding: 2.5rem 0;
}

.article-container {
    max-width: 850px;
    margin: 0 auto;
}

.article-breadcrumbs {
    margin-bottom: 1rem;
    font-size: 13px;
    font-weight: 600;
    color: var(--tone-body);
}

.article-breadcrumbs a {
    color: var(--tone-body);
    text-decoration: none;
}

.article-breadcrumbs a:hover {
    color: var(--tone-accent);
}

.article-header .article-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 1rem;
    text-wrap: balance;
}

.article-header .article-meta {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--tone-line);
    font-size: 14px;
    font-weight: 600;
    color: var(--tone-body);
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.75;
}

.article-content h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin: 2.5rem 0 1rem;
    font-weight: 700;
}

.article-content h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin: 2rem 0 0.8rem;
    font-weight: 700;
}

.article-content p,
.article-content ul,
.article-content ol {
    margin-bottom: 1.25rem;
}

.article-content ul {
    list-style: none;
    padding-left: 0;
}

.article-content ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 0.5rem;
}

.article-content ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    top: -2px;
    color: var(--tone-accent);
    font-size: 22px;
    font-weight: 700;
}

.article-content a {
    color: var(--tone-accent);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.article-content a:hover {
    color: var(--tone-accent-deep);
}

.article-faq {
    margin-top: 3rem;
    border-top: 1px solid var(--tone-line);
    padding-top: 2rem;
}

.article-faq details {
    border-bottom: 1px solid var(--tone-line);
    padding: 1rem 0;
}

.article-faq summary {
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.article-faq summary::-webkit-details-marker {
    display: none;
}

.article-faq .faq-answer {
    padding-top: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--tone-line);
    text-align: center;
}

.article-related {
    margin-top: 2rem;
    padding: 1.5rem;
    border: 1px solid var(--tone-line);
    border-radius: 16px;
    background: var(--tone-paper-2);
}

.article-related h3 {
    margin: 0 0 0.75rem 0;
    font-size: 1.2rem;
}

.article-related ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.article-related li + li {
    margin-top: 0.4rem;
}