@import url('https://fonts.googleapis.com/css2?family=Newsreader:wght@400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Newsreader', serif;
    line-height: 1.4;
    color: #333;
    width: 100%;
    margin: 0;
    padding: 40px 20px 40px 80px;
    background-color: #f5f5f5;
    font-size: 18px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.blog-title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
}

.current-date {
    font-size: 16px;
    color: #666;
}

/* Posts list en página principal */
.posts-count {
    margin-bottom: 30px;
    font-size: 18px;
    color: #666;
}

.posts-list {
    margin-bottom: 40px;
}

.post-item {
    margin-bottom: 8px;
    font-size: 18px;
}

.post-date {
    color: #666;
    margin-right: 8px;
}

.post-link {
    color: #0066cc;
    text-decoration: underline;
}

.post-link:hover {
    color: #004499;
}

.info-link {
    display: inline-block;
    margin: 30px 0 40px 0;
    color: #0066cc;
    text-decoration: underline;
    font-size: 18px;
}

.info-link:hover {
    color: #004499;
}

.section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 18px;
    color: #000;
    margin-bottom: 8px;
}

.links-list {
    font-size: 18px;
    color: #666;
}

.links-list a {
    color: #0066cc;
    text-decoration: underline;
    margin-right: 8px;
}

.links-list a:hover {
    color: #004499;
}

/* Estilos para posts individuales */
.post-meta {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.3;
}

.meta-item {
    margin-bottom: 2px;
    color: #666;
}

.post-title {
    font-size: 26px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.post-content {
    margin-top: 40px;
    width: calc(100% - 40px);
    max-width: none;
    transition: width 0.3s ease;
    font-size: 18px;
}

.post-content.narrow {
    width: 60%;
    max-width: 700px;
}

.content-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.post-text {
    line-height: 1.3;
    color: #333;
}

.post-text p {
    margin-bottom: 20px;
}

.width-toggle {
    background: none;
    border: none;
    color: #0066cc;
    text-decoration: underline;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    padding: 0;
}

.width-toggle:hover {
    color: #004499;
}

.back-link {
    display: inline-block;
    margin-top: 40px;
    color: #0066cc;
    text-decoration: underline;
    font-size: 18px;
}

.back-link:hover {
    color: #004499;
}

/* Responsive */
@media (max-width: 600px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    body {
        padding: 20px 15px;
    }
    
    .post-title {
        font-size: 22px;
    }
}
