.blogs-section {
  margin-top: 2rem;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blogs-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

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

.blog-card__title {
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.blog-card__excerpt {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #555;
}

.special-card {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.special-card .blog-card__title {
  margin-bottom: 1rem;
  line-height: 1.3;
}

.special-card .blog-card__excerpt {
  color: #ddd;
  flex-grow: 1;
}

.special-card .c-button {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 0.6rem 1.2rem;
  align-self: flex-start;
  transition: all 0.2s ease;
  border-radius: 6px;
  text-decoration: none;
}

.special-card .c-button:hover {
  background: #b45309;
  color: #e2e8f0;
}

.blog-content {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #fff;
}

.blog-meta {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.blog-content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #38bdf8;
  margin-bottom: 1rem;
}

.blog-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #b3cde0;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.blog-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.blog-content p {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1rem;
}

.blog-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.blog-content li {
  margin-bottom: 0.5rem;
}

.blog-content a {
  color: #1a73e8;
  text-decoration: underline;
}

.blog-content strong {
  font-weight: 600;
}

.blog-content section {
  margin-bottom: 2rem;
}

.code-example {
  background: #111;
  color: #f4f4f4;
  font-family: "Courier New", monospace;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.code-example .highlight {
  color: #00ff9d;
}

.highlight {
  background: #333;
  border-left: 5px solid #1da1f2;
  padding: 1rem;
  margin: 1.5rem 0;
  border-radius: 6px;
  color: #1a73e8;
}

.alert {
  background: #fff4f4;
  border-left: 5px solid #e74c3c;
  padding: 1rem;
  margin: 1.5rem 0;
  border-radius: 6px;
  color: #721c24;
}

.blog-card {
  cursor: pointer;
  position: relative;
}
