.blog-page {
    padding: 2rem 1.5rem 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

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

.blog-page-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--white);
    margin-bottom: 0.75rem;
}

.blog-page-header p {
    color: #cfcfcf;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
}

.blog-card {
    background: #111;
    border: 1px solid rgba(247, 223, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(247, 223, 0, 0.45);
}

.blog-card-image {
    height: 180px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.blog-card-meta span {
    color: var(--yellow);
}

.blog-card h2 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.blog-card h2 a {
    color: var(--white);
    text-decoration: none;
}

.blog-card h2 a:hover {
    color: var(--yellow);
}

.blog-card-excerpt {
    color: #cfcfcf;
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1rem;
    flex: 1;
}

.blog-card-link {
    color: var(--yellow);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.blog-card-link:hover {
    text-decoration: underline;
}

/* Artículo individual */
.article-page {
    padding: 2rem 1.5rem 4rem;
    max-width: 760px;
    margin: 0 auto;
}

.article-breadcrumb {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1rem;
}

.article-breadcrumb a {
    color: var(--yellow);
    text-decoration: none;
}

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

.article-header h1 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.article-meta {
    font-size: 0.9rem;
    color: #999;
}

.article-meta time {
    color: var(--yellow);
}

.article-content h2 {
    color: var(--white);
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
}

.article-content p,
.article-content li {
    color: #cfcfcf;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.article-content ul,
.article-content ol {
    padding-left: 1.4rem;
    margin-bottom: 1rem;
}

.article-content li {
    margin-bottom: 0.4rem;
}

.article-content a:not(.btn) {
    color: var(--yellow);
}

.article-content .btn-primary {
    color: var(--black);
    background: var(--yellow);
}

.article-content .btn-primary:hover {
    color: var(--black);
    background: #fff700;
}

.article-content .btn-secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
}

.article-content .btn-secondary:hover {
    color: var(--yellow);
    border-color: var(--yellow);
}

.article-cta {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: #111;
    border: 1px solid rgba(247, 223, 0, 0.25);
    border-radius: 10px;
    text-align: center;
}

.article-cta p {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
}

.article-related {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
}

.article-related h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

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

.article-related li {
    margin-bottom: 0.5rem;
    color: #cfcfcf;
}

.article-related a {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 500;
}

.article-related a:hover {
    text-decoration: underline;
}
