/* --- SECCIÓN DE INTRODUCCIÓN --- */
.intro-section {
    margin-bottom: 60px;
}

.intro-image {
    width: 100%;
    height: auto;
    display: block;
}

.intro-text {
    text-align: left;
    margin-top: 25px;
    font-size: 16px;
    line-height: 1.6;
    max-width: 100%;
}

.content-header {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: left;
}

/* --- Entradas de Blog --- */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch; /* Ensure items stretch to fill the row height */
}

/* Mobile responsive - single column for blog cards */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* --- SECCIÓN BIOGRAFÍA --- */
.bio-section {
    margin-bottom: 60px;
}

.bio-paragraph {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.bio-paragraph:last-child {
    margin-bottom: 0;
}

/* --- SECCIÓN DE POLÍTICAS --- */
.policy-section {
    margin-bottom: 60px;
}

.policy-date {
    font-size: 14px;
    color: inherit;
    opacity: 0.7;
    margin-bottom: 30px;
}

.policy-content {
    font-size: 16px;
    line-height: 1.6;
}

.policy-content h2 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-content li {
    margin-bottom: 8px;
}

.policy-content a {
    color: inherit;
    text-decoration: underline;
}

.policy-content a:hover {
    color: #000;
}