@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Source+Serif+4:wght@500;600&display=swap');


* { box-sizing: border-box; }


body {
margin: 0;
font-family: 'Inter', sans-serif;
background: #f3f5f7;
color: #1e2933;
}


h1, h2, h3 { font-family: 'Source Serif 4', serif; margin-top: 0; }


header {
background: #ffffff;
border-bottom: 1px solid #d8dee6;
}


.navbar {
max-width: 1200px;
margin: 0 auto;
padding: 18px 20px;
display: flex;
justify-content: space-between;
align-items: center;
}


.logo {
font-weight: 700;
font-size: 1.2rem;
color: #2f5d8c;
text-decoration: none;
}


nav a {
margin-left: 24px;
text-decoration: none;
color: #5a6772;
font-weight: 500;
}


nav a:hover { color: #2f5d8c; }


.blog-wrapper {
max-width: 1200px;
margin: 0 auto;
padding: 60px 20px;
}


.controls {
display: flex;
flex-wrap: wrap;
gap: 15px;
justify-content: space-between;
margin-bottom: 30px;
}


select {
padding: 8px 12px;
border-radius: 6px;
border: 1px solid #d8dee6;
background: #ffffff;
}


.gallery {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
gap: 25px;
}


.post-card {
background: #ffffff;
border: 1px solid #d8dee6;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 6px 22px rgba(0,0,0,0.05);
cursor: pointer;
display: flex;
flex-direction: column;
}


.post-card img {
}