@charset "UTF-8";
/* Existing CSS remains unchanged */

.container {
  max-width: 1200px;
  margin: 35px auto;
  padding: 0 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding: 80px 0 120px;
}

.blog-article {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-article:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.blog-article img {
  width: 100%;
  height: auto;
}

.blog-article h2 {
  font-size: var(--fz18_24);
  margin: 16px;
  font-weight: var(--fw6);
}

.blog-article p {
  margin: 0 16px 16px;
}

.blog-article a {
  text-decoration: none;
  color: var(--blue);
}

.blog-article a:hover {
  text-decoration: underline;
}

.rich-title {
  font-size: var(--fz24_40);
  font-weight: var(--fw7);
  /* color: var(--green); */
  padding: 20px 0;
  text-align: center;
  margin-bottom: 10px;
  position:relative;
  border-bottom:3px solid #333;
  background-color:white;
  border-radius: 30px;
}

.rich-title:before {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) skew(-25deg);
    height: 20px;
    width: 10px;
    border-right: 3px solid #333;
    background-color: white;
    content: "";
}

.subtitle {
  text-align: center;
  font-size: var(--fz18);
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .container {
    max-width: 540px;
  }
}