.hero {
  background: #008cff;
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}
.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}
.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}
.hero .btn {
  background: #ffffff;
  color: #008cff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}
.hero .btn:hover {
  background: #005bb5;
  color: #ffffff;
}

/* Main Container */
.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Content Wrapper */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 30px;
}

/* Articles List - Single Column */
.articles-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.article-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.category .category-badge {
  display: inline-block;
  color: rgb(0, 117.6, 214.2);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.category .category-badge:hover {
  background-color: rgba(0, 140, 255, 0.15);
  text-decoration: none;
}

.article-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.article-title a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-title a:hover {
  color: #3498db;
}

.article-meta {
  color: #7f8c8d;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.article-excerpt {
  color: #34495e;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  color: #3498db;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
}

/* Sidebar */
.sidebar {
  width: 100%;
}

@media (min-width: 992px) {
  .content-wrapper {
    flex-direction: row;
  }
  .articles-list {
    flex: 2;
  }
  .sidebar {
    flex: 1;
    padding-left: 30px;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 36px;
  }
  .hero p {
    font-size: 16px;
  }
}/*# sourceMappingURL=index.css.map */