* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}


.banner {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
  url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23001e3c"/><path d="M0 0h100v100H0z" fill="%23001e3c"/><path d="M10 10h80v80H10z" fill="%23002747"/><text x="50" y="50" font-size="5" fill="%23ffffff">01001</text></svg>');
  padding: 5rem 1rem;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)),
  url(/images/new/about_horizontal.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white;
  text-align: center;
  font-size: 60px;
  font-weight: 600;
}
.blogs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  gap: 40px;
  margin-bottom:100px;
  width: 90%;
}

.blogs .left {
  flex: 1;
}

.blogs .left .breadcrumb {
  color: #666;
  margin-bottom: 20px;
}

.blogs .left .breadcrumb a {
  color: #666;
  text-decoration: none;
  margin: auto 5px;
}

.blogs .left .breadcrumb a:hover,
.blogs .right .nav-links a:hover{
  text-decoration: underline;
}

.blogs .left .heading {
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
  line-height: 1.3;
}

.blogs .left .description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #343333;
  margin-bottom: 30px;
  margin-top: 20px;
}

.blogs .left .description p{
    text-align: justify;
}


.blogs .left .meta-info p {
  margin: 5px 0;
  color: #666;
  font-weight: 600;
}

.blogs .left .meta-info span{
  font-weight:500;
}

/* .blogs .left .meta-info a {
  color: #0066cc;
  text-decoration: none;
} */
.blogs .right {
  width: 300px;
}

.blogs .right .recent-container {
  background: #e5f1f9;
  padding: 24px;
  border-radius: 8px;
}

.blogs .right .section-title {
  font-size: 17px;
  font-weight: bold;
  /* margin-bottom: 20px; */
  color: #333;
}

.blogs .right hr{
  margin: 10px 0px;
  width: 39px;
  height: 4px;
  background: #427556;
}

.blogs .right .nav-links {
  list-style: none;
  flex-direction: column;
}

.blogs .right .related_posts {
  margin-bottom: 15px;
}

.blogs .right .related_posts:last-child {
  margin-bottom: 0;
}

.blogs .right .related_posts a {
  color: #184f96;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.5;
  padding: 0.5rem 0rem;
}

.blogs .right .related_posts a:hover{
  text-decoration: underline;
}

@media (max-width: 900px) {
  .blogs {
    flex-direction: column;
  }

  .blogs .right {
    width: 100%;
  }

  .blogs .left .meta-info {
    order: -1;
  }
}


@media (max-width: 400px) {

  .banner {
    font-size: 50px;
}

  .blogs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 10px;
    display: flex;
    gap: 40px;
    margin-bottom: 100px;
    width: 96%;
  }
}

