.blog-header {
background: linear-gradient(135deg, #4a6cf7, #3bb78f);
padding: 120px 0 80px;
text-align: center;
color: white;
}
.blog-header h1 {
color: white;
font-size: 4rem;
margin-bottom: 1rem;
}
.blog-header p {
color: white;
font-size: 2rem;
}
.blog-container {
max-width: 1200px;
margin: 0 auto;
padding: 60px 20px;
}
.blog-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 3rem;
margin-top: 3rem;
}
.blog-card {
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.blog-card-image {
width: 100%;
height: 250px;
background: linear-gradient(135deg, #667eea, #764ba2);
display: flex;
align-items: center;
justify-content: center;
font-size: 5rem;
}
.blog-card-content {
padding: 2rem;
}
.blog-card-date {
color: #999;
font-size: 0.9rem;
margin-bottom: 0.5rem;
}
.blog-card h2 {
color: #333;
font-size: 2rem;
margin-bottom: 1rem;
line-height: 1.4;
font-weight: bold;
}
.blog-card p {
color: #666;
margin-bottom: 1.5rem;
line-height: 1.6;
}
.blog-card-link {
display: inline-block;
color: #4a6cf7;
font-weight: bold;
text-decoration: none;
padding: 10px 25px;
border: 2px solid #4a6cf7;
border-radius: 25px;
transition: all 0.3s;
}
.blog-card-link:hover {
background: #4a6cf7;
color: white;
}
