/* Home Page - Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 3rem;
  gap: 2rem;
}

.hero-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.hero-text ul {
  list-style: none;
  margin-left: 0;
}

.hero-text li {
  margin-bottom: 0.5rem;
}

.hero img {
  border-radius: 50%;
  width: 250px;
  height: 250px;
  object-fit: cover;
}

.section {
  margin-bottom: 2rem;
}

/* Blog Page - Article List */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.blog-card {
  display: flex;
  gap: 2rem;
  padding: 0.5rem;
  border: 1px solid #e1e4e8;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  border-color: #0969da;
  text-decoration: none;
}

.blog-image {
  width: 208px;
  min-width: 208px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e1e4e8;
}

.blog-placeholder {
  width: 208px;
  min-width: 208px;
  height: 150px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
}

.blog-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.blog-content p {
  margin: 0;
  color: #57606a;
  line-height: 1.5;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.8rem;
}

.blog-tags .tag {
  background: #f6f8fa;
  color: #57606a;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid #d0d7de;
}

.new-badge {
  background: #f59e42;
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 0.5rem;
  letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
  }

  .hero img {
    width: 150px;
    height: 150px;
  }

  .blog-card {
    flex-direction: column;
  }

  .blog-image,
  .blog-placeholder {
    width: 100%;
    min-width: 100%;
  }
}
