/* =============================================================================
   BLOG - Reiko
   Sistema de Notícias e Artigos
   ============================================================================= */

/* =============================================================================
   PÁGINA DE LISTAGEM (blog.php)
   ============================================================================= */

.blog-hero {
    position: relative;
    min-height: 300px;
    padding: 110px 24px 60px;
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a2f2f 100%);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-hero-pentagram {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%235b8a8a' stroke-width='0.5'%3E%3Ccircle cx='100' cy='100' r='95'/%3E%3Ccircle cx='100' cy='100' r='85'/%3E%3Cpath d='M100 5 L123.5 69 L195 69 L137 111 L156 175 L100 138 L44 175 L63 111 L5 69 L76.5 69 Z'/%3E%3Cpath d='M100 15 L120 68 L180 68 L132 105 L148 160 L100 128 L52 160 L68 105 L20 68 L80 68 Z'/%3E%3Cline x1='100' y1='5' x2='100' y2='195'/%3E%3Cline x1='5' y1='100' x2='195' y2='100'/%3E%3Cline x1='25' y1='25' x2='175' y2='175'/%3E%3Cline x1='175' y1='25' x2='25' y2='175'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.blog-hero-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.blog-hero-title span {
    background: linear-gradient(135deg, var(--reiko-blue), var(--reiko-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero-desc {
    font-size: 1.125rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

/* Filtros */
.blog-filters {
    position: relative;
    z-index: 1;
    padding: 40px 24px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.blog-filters-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.blog-categories {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-category {
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    background: var(--white);
    border: 1px solid var(--gray-200);
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-category:hover,
.blog-category.active {
    background: var(--gray-900);
    color: var(--white);
    border-color: var(--gray-900);
}

.blog-search {
    position: relative;
}

.blog-search input {
    padding: 12px 20px 12px 48px;
    border-radius: 100px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    font-size: 14px;
    width: 280px;
    transition: all 0.3s ease;
}

.blog-search input:focus {
    outline: none;
    border-color: var(--reiko-blue);
    box-shadow: 0 0 0 3px rgba(91, 138, 138, 0.1);
}

.blog-search svg {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--gray-400);
}

/* Grid de Posts */
.blog-grid-section {
    position: relative;
    z-index: 1;
    padding: 80px 24px;
    background: var(--white);
}

.blog-grid-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.blog-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--reiko-blue);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
}

.blog-card-content {
    padding: 24px;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-excerpt {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.blog-card-date {
    font-size: 13px;
    color: var(--gray-400);
}

.blog-card-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--reiko-blue);
    transition: gap 0.3s ease;
}

.blog-card:hover .blog-card-read {
    gap: 10px;
}

.blog-card-read svg {
    width: 16px;
    height: 16px;
}

/* Featured Post */
.blog-featured {
    position: relative;
    z-index: 1;
    padding: 80px 24px 0;
    background: var(--white);
}

.blog-featured-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a2f2f 100%);
    border-radius: 24px;
    overflow: hidden;
}

.blog-featured-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 48px 48px 0;
}

.blog-featured-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(91, 138, 138, 0.2);
    color: var(--reiko-blue);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
    margin-bottom: 20px;
    width: fit-content;
}

.blog-featured-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 16px;
}

.blog-featured-excerpt {
    font-size: 1rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 24px;
}

.blog-featured-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.blog-featured-meta span {
    font-size: 14px;
    color: var(--gray-500);
}

.blog-featured-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--reiko-gold);
    color: var(--gray-900);
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    width: fit-content;
    transition: all 0.3s ease;
}

.blog-featured-btn:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 30px rgba(196, 185, 74, 0.3);
}

.blog-featured-btn svg {
    width: 18px;
    height: 18px;
}

/* Paginação */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 60px;
}

.blog-pagination a,
.blog-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.blog-pagination a:hover,
.blog-pagination span.active {
    background: var(--gray-900);
    color: var(--white);
    border-color: var(--gray-900);
}

/* Mensagem sem resultados */
.blog-no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    text-align: center;
    color: var(--gray-500);
}

.blog-no-results svg {
    margin-bottom: 20px;
    color: var(--gray-300);
}

.blog-no-results h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.blog-no-results p {
    font-size: 1rem;
    color: var(--gray-500);
}

/* =============================================================================
   PÁGINA DE ARTIGO
   ============================================================================= */

.article-hero {
    position: relative;
    padding: 100px 24px 60px;
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a2f2f 100%);
    overflow: hidden;
}

.article-hero::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%235b8a8a' stroke-width='0.5'%3E%3Ccircle cx='100' cy='100' r='95'/%3E%3Ccircle cx='100' cy='100' r='85'/%3E%3Cpath d='M100 5 L123.5 69 L195 69 L137 111 L156 175 L100 138 L44 175 L63 111 L5 69 L76.5 69 Z'/%3E%3Cpath d='M100 15 L120 68 L180 68 L132 105 L148 160 L100 128 L52 160 L68 105 L20 68 L80 68 Z'/%3E%3Cline x1='100' y1='5' x2='100' y2='195'/%3E%3Cline x1='5' y1='100' x2='195' y2='100'/%3E%3Cline x1='25' y1='25' x2='175' y2='175'/%3E%3Cline x1='175' y1='25' x2='25' y2='175'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.article-hero-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.article-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
}

.article-breadcrumb a {
    color: var(--gray-400);
    transition: color 0.3s ease;
}

.article-breadcrumb a:hover {
    color: var(--reiko-gold);
}

.article-breadcrumb span {
    color: var(--gray-600);
}

.article-breadcrumb svg {
    width: 14px;
    height: 14px;
    color: var(--gray-600);
}

.article-tag {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(91, 138, 138, 0.2);
    color: var(--reiko-blue);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
    margin-bottom: 24px;
}

.article-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-400);
}

.article-meta-item svg {
    width: 18px;
    height: 18px;
    color: var(--reiko-gold);
}

/* Imagem destacada */
.article-featured-image {
    position: relative;
    z-index: 2;
    margin-top: -60px;
    padding: 0 24px 60px;
}

.article-featured-image-container {
    max-width: 1000px;
    margin: 0 auto;
}

.article-featured-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

/* Conteúdo do artigo */
.article-content {
    position: relative;
    z-index: 1;
    padding: 40px 24px 80px;
    background: var(--white);
}

.article-content-container {
    max-width: 1000px;
    margin: 0 auto;
}

.article-body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.article-body h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 48px 0 24px;
    letter-spacing: -0.02em;
}

.article-body h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 36px 0 16px;
}

.article-body p {
    margin-bottom: 24px;
}

.article-body ul,
.article-body ol {
    margin: 24px 0;
    padding-left: 24px;
}

.article-body li {
    margin-bottom: 12px;
}

.article-body blockquote {
    margin: 40px 0;
    padding: 32px 40px;
    background: linear-gradient(135deg, rgba(91, 138, 138, 0.05) 0%, rgba(196, 185, 74, 0.05) 100%);
    border-left: 4px solid var(--reiko-gold);
    border-radius: 0 16px 16px 0;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gray-800);
}

.article-body img {
    width: 100%;
    border-radius: 12px;
    margin: 32px 0;
}

.article-body a:not(.article-cta a) {
    color: var(--reiko-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-body a:not(.article-cta a):hover {
    color: var(--reiko-gold);
}

/* Reset para links dentro do CTA */
.article-cta a,
.article-cta a:hover {
    color: var(--gray-900);
    text-decoration: none;
}

.article-body code {
    padding: 3px 8px;
    background: var(--gray-100);
    border-radius: 6px;
    font-family: 'Fira Code', monospace;
    font-size: 0.9em;
}

.article-body pre {
    margin: 32px 0;
    padding: 24px;
    background: var(--gray-900);
    border-radius: 12px;
    overflow-x: auto;
}

.article-body pre code {
    padding: 0;
    background: none;
    color: var(--gray-100);
}

/* Highlight box */
.article-highlight {
    margin: 40px 0;
    padding: 32px;
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a2f2f 100%);
    border-radius: 16px;
    color: var(--white);
}

.article-highlight h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--reiko-gold);
}

.article-highlight p {
    color: var(--gray-300);
    margin-bottom: 0;
}

/* Tags do artigo */
.article-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.article-tags-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
}

.article-tags a {
    padding: 6px 14px;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 13px;
    border-radius: 100px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.article-tags a:hover {
    background: var(--gray-900);
    color: var(--white);
}

/* Autor */
.article-author {
    margin-top: 48px;
    padding: 32px;
    background: var(--gray-50);
    border-radius: 16px;
}

.article-author-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.article-author-info span {
    font-size: 14px;
    color: var(--reiko-blue);
    display: block;
    margin-bottom: 8px;
}

.article-author-info p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

/* Share */
.article-share {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.article-share-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
}

.article-share-links {
    display: flex;
    gap: 8px;
}

.article-share-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gray-100);
    color: var(--gray-600);
    transition: all 0.3s ease;
}

.article-share-links a:hover {
    background: var(--gray-900);
    color: var(--white);
}

.article-share-links svg {
    width: 18px;
    height: 18px;
}

/* Artigos relacionados */
.related-articles {
    position: relative;
    z-index: 1;
    padding: 80px 24px;
    background: var(--gray-50);
}

.related-articles-container {
    max-width: 1200px;
    margin: 0 auto;
}

.related-articles-header {
    text-align: center;
    margin-bottom: 48px;
}

.related-articles-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--gray-900);
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* CTA no artigo */
.article-cta {
    margin: 48px 0;
    padding: 40px;
    background: linear-gradient(135deg, var(--reiko-blue) 0%, #3d6b6b 100%);
    border-radius: 20px;
    text-align: center;
}

.article-cta h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.article-cta p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.article-cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--reiko-gold);
    color: var(--gray-900);
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-cta a:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* =============================================================================
   RESPONSIVO
   ============================================================================= */

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-featured-card {
        grid-template-columns: 1fr;
    }

    .blog-featured-content {
        padding: 32px;
    }

    .related-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Blog Hero */
    .blog-hero {
        min-height: 220px;
        padding: 90px 20px 40px;
    }

    .blog-hero-pentagram {
        width: 400px;
        height: 400px;
    }

    .blog-hero-title {
        font-size: 32px;
    }

    .blog-hero-desc {
        font-size: 16px;
    }

    /* Filters */
    .blog-filters {
        padding: 20px;
    }

    .blog-filters-container {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .blog-categories {
        flex-wrap: wrap;
        gap: 8px;
    }

    .blog-category {
        font-size: 13px;
        padding: 8px 14px;
    }

    .blog-search {
        width: 100%;
    }

    .blog-search input {
        width: 100%;
    }

    /* Featured Post */
    .blog-featured {
        padding: 40px 20px;
    }

    .blog-featured-card {
        flex-direction: column;
    }

    .blog-featured-image {
        width: 100%;
        height: 200px;
    }

    .blog-featured-content {
        width: 100%;
        padding: 24px 20px;
    }

    .blog-featured-title {
        font-size: 22px;
    }

    .blog-featured-excerpt {
        font-size: 15px;
    }

    /* Blog Grid */
    .blog-grid-section {
        padding: 40px 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-title {
        font-size: 17px;
    }

    /* Pagination */
    .blog-pagination {
        margin-top: 40px;
        gap: 8px;
    }

    .blog-pagination a,
    .blog-pagination span {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    /* Article Hero */
    .article-hero {
        padding: 90px 20px 40px;
    }

    .article-title {
        font-size: 28px;
    }

    .article-meta {
        gap: 12px;
        flex-wrap: wrap;
    }

    .article-meta span {
        font-size: 13px;
    }

    /* Article Content */
    .article-content {
        padding: 40px 20px;
    }

    .article-body {
        font-size: 1rem;
        line-height: 1.75;
    }

    .article-body h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .article-body h3 {
        font-size: 1.25rem;
    }

    .article-body blockquote {
        padding: 20px;
        font-size: 1.05rem;
        margin: 1.5rem 0;
    }

    .article-body ul,
    .article-body ol {
        padding-left: 20px;
    }

    /* Article Author */
    .article-author {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .article-author-info h4 {
        font-size: 1rem;
    }

    /* Share */
    .article-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .article-share-links {
        width: 100%;
        justify-content: flex-start;
    }

    .article-share-links a {
        width: 44px;
        height: 44px;
    }

    /* Tags */
    .article-tags {
        flex-wrap: wrap;
        gap: 8px;
    }

    .article-tags a {
        font-size: 12px;
        padding: 6px 12px;
    }

    /* Related */
    .related-articles {
        padding: 48px 20px;
    }

    .related-articles-title {
        font-size: 24px;
    }

    .related-articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .related-card-content {
        padding: 20px;
    }

    .related-card-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        min-height: 200px;
        padding: 85px 16px 32px;
    }

    .blog-hero-pentagram {
        width: 300px;
        height: 300px;
    }

    .blog-hero-title {
        font-size: 28px;
    }

    .blog-filters {
        padding: 16px;
    }

    .blog-category {
        font-size: 12px;
        padding: 6px 12px;
    }

    .blog-featured {
        padding: 32px 16px;
    }

    .blog-featured-content {
        padding: 20px 16px;
    }

    .blog-featured-title {
        font-size: 20px;
    }

    .blog-grid-section {
        padding: 32px 16px;
    }

    .article-hero {
        padding: 85px 16px 32px;
    }

    .article-title {
        font-size: 24px;
    }

    .article-content {
        padding: 32px 16px;
    }

    .article-body blockquote {
        padding: 16px;
        font-size: 1rem;
    }

    .related-articles {
        padding: 40px 16px;
    }

    .related-articles-title {
        font-size: 22px;
    }
}

/* =============================================================================
   POSTS RELACIONADOS (blog/related-posts.php)
   ============================================================================= */
.blog-related {
    padding: 70px 24px 90px;
    background: linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
    border-top: 1px solid #ececec;
}
.blog-related-container {
    max-width: 1180px;
    margin: 0 auto;
}
.blog-related-header {
    text-align: center;
    margin-bottom: 40px;
}
.blog-related-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--reiko-blue);
    margin-bottom: 10px;
}
.blog-related-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
    letter-spacing: -0.02em;
}
.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.blog-related-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 26px 22px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.blog-related-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--reiko-blue), #c4b94a);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
}
.blog-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18);
    border-color: rgba(91,138,138,0.3);
}
.blog-related-card:hover::before { transform: scaleX(1); }
.blog-related-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(91,138,138,0.12), rgba(196,185,74,0.08));
    color: var(--reiko-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-related-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.4;
    margin: 0;
    flex-grow: 1;
}
.blog-related-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--reiko-blue);
    margin-top: auto;
    transition: gap 0.2s ease;
}
.blog-related-card:hover .blog-related-card-cta { gap: 10px; }

@media (max-width: 920px) {
    .blog-related-grid { grid-template-columns: 1fr; gap: 16px; }
    .blog-related-title { font-size: 24px; }
    .blog-related { padding: 50px 16px 70px; }
}
