/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
  padding: 0 20px;
}

/* Header styles */
.site-header {
  background-color: #0a0a23;
  color: white;
  padding: 30px 20px;
  text-align: center;
}
.site-header img {
  width: 100%;
  height: 100%;
  object-fit: auto;
}
.site-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.2rem;
  font-weight: 300;
}

/* Navigation */
.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-top: 15px;
  flex-wrap: wrap;
}

.navbar li {
  margin: 5px 15px;
}

.navbar a {
  text-decoration: none;
  color: #ffd700;
  font-weight: bold;
}

.navbar a:hover {
  text-decoration: underline;
}

/* Blog grid layout */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 40px 0;
}

/* Blog post styles */
.blog-post {
  background: white;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.2s;
}

.blog-post:hover {
  transform: translateY(-5px);
}

.blog-post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-post h2 {
  font-size: 1.5rem;
  margin: 15px 20px 5px;
}

.blog-post h2 a {
  text-decoration: none;
  color: #0a0a23;
}

.blog-post h2 a:hover {
  color: #0066cc;
}

.blog-post h3 {
  font-size: 1 rem;
  margin: 15px 20px 5px;
}
.blog-post .meta {
  font-size: 0.9rem;
  color: #888;
  margin: 0 20px 10px;
}

.blog-post p {
  margin: 0 20px 20px;
}

.read-more {
  display: inline-block;
  margin: 0 20px 20px;
  padding: 8px 15px;
  background-color: #0a0a23;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.95rem;
}

.read-more:hover {
  background-color: #333;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9rem;
  color: #555;
  border-top: 1px solid #ccc;
  margin-top: 40px;
}

.ad-container {
  margin: 20px 0;
  padding: 10px 0;
  text-align: center;
}

.posts-list {
  max-width: 900px;
  margin: 40px auto;
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.post-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

.post-card img {
  width: 100%;
  border-radius: 7px;
  margin-bottom: 15px;
}

.post-card h2 {
  margin-bottom: 10px;
}

.read-more {
  display: inline-block;
  margin-top: 15px;
  color: #11b4a1;
  font-weight: bold;
}
.ad-box {
  margin: 30px 0;
  text-align: center;
}
ul {
  padding-left: 20px;
  margin-top: 1em;
  margin-bottom: 1em;
}

li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}

