
#tag-section-2 {
  padding: 60px 15px;
  margin: 0 auto;
  max-width: 900px;
}
#tag-section-2 .section-hero {
  background-size: cover;
  background-position: center;
  padding: 70px 15px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}
#tag-section-2 .list-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
#tag-section-2 .list-item img {
  width: 150px;
  height: 100%;
  object-fit: cover;
}
#tag-section-2 .content {
  padding: 15px;
  flex: 1;
}
@media (max-width: 576px) {
  #tag-section-2 .list-item {
    flex-direction: column;
  }
  #tag-section-2 .list-item img {
    width: 100%;
    height: auto;
  }
}



#content-block-3 {
  padding: 60px 15px;
  max-width: 900px;
  margin: 0 auto;
}
#content-block-3 .row {
  display: flex;
  gap: 30px;
}
#content-block-3 .left-column {
  flex: 2;
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}
#content-block-3 .right-column {
  flex: 1;
  background: #f8f9fa;
  padding: 20px;
  border-left: 3px solid #007bff;
  font-style: italic;
  text-align: center;
}
#content-block-3 .right-column p {
  margin: 0;
}
#content-block-3 .right-column .author {
  margin-top: 10px;
  font-weight: bold;
  font-style: normal;
}
@media (max-width: 768px) {
  #content-block-3 .row {
    flex-direction: column;
  }
  #content-block-3 .right-column {
    border-left: none;
    border-top: 3px solid #007bff;
  }
}


