h1 {
font-size: 28px;
text-align: center;
color: var(--white);
}
.blog-page {
max-width: 1260px;
margin: 0 auto;
padding: 100px 20px;
}
.blog-header {
background: linear-gradient(135deg, var(--noir) 0%, var(--gris) 100%);
color: white;
padding: 30px;
border-radius: 6px;
text-align: center;
margin-bottom: 40px;
}
.blog-header h1 {
margin-bottom: 15px;
padding-bottom: 0;
}
.blog-header p {
opacity: 0.95;
}
.category-section {
margin-bottom: 50px;
}
.category-title {
background: linear-gradient(135deg, var(--noir) 0%, var(--gris) 100%);
padding: 20px;
border-radius: 6px;
margin-bottom: 25px;
box-shadow: 1px 2px 1px lightgrey;
}
.category-title h2 {
color: white;
margin: 0;
padding-bottom: 0;
font-size: 1.5em;
text-align: left;
}
.articles-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 25px;
}
.article-card {
background: var(--white);
border-radius: 6px;
padding: 25px;
box-shadow: 1px 2px 1px lightgrey;
transition: transform 0.3s ease;
text-align: left;
}
.article-title {
color: var(--color2);
font-size: 1.1em;
font-weight: 600;
margin-bottom: 10px;
line-height: 1.3;
}
.article-description {
color: var(--gris);
line-height: 1.5;
margin-bottom: 15px;
}
.article-link {
color: var(--color2);
text-decoration: none;
font-weight: 500;
display: inline-flex;
align-items: center;
gap: 5px;
transition: color 0.3s ease;
}
.article-link:hover {
color: var(--color);
}
.article-tag {
display: inline-block;
color: var(--color2);
padding: 3px 8px;
border-radius: 12px;
font-size: 0.8em;
margin-bottom: 10px;
}
.vae-section {
background: linear-gradient(135deg, var(--color) 0%, var(--color2) 100%);
border-radius: 6px;
padding: 30px;
margin-bottom: 50px;
}
.vae-section .category-title {
background: rgba(255,255,255,0.1);
box-shadow: none;
}
.vae-section .category-title h2 {
color: white;
}
.vae-section .article-card {
background: rgba(255,255,255,0.95);
}