
main{
      max-width: 1240px;
      margin: 0 auto;
      padding-top: 100px;
      padding-inline: 16px;
}

.belg-hero {
  display: flex;
align-items: center;
  margin-bottom: 60px;

  gap: 20px;
  background: #fff;
}

.belg-hero__content {
    flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;

  background: #fff;
}


.belg-hero h1 {
  margin-bottom: 16px;
  color: #000000;
  font-size: 40px;
  font-weight: 700;
}

.belg-hero p {

 margin-bottom: 40px;
  color: #000000;
  font-size: 24px;

}

.belg-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
max-width: 400px;
width: 100%;
  padding: 16px 24px;
  background: #4F52FF;
  color: #E9EFFD;
  text-decoration: none;
  font-size: 16px;
  border-radius: 4px;
}
a{
    text-decoration: none;
}
.belg-hero__image{
    flex: 1;
}
.belg-hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}.belg-three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 40px;
}

.belg-three-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.belg-three-card__image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  flex-shrink: 0;
}

.belg-three-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.belg-three-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.belg-three-card h3 {
  margin-bottom: 12px;
  margin-top: 20px;
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;

  height: 93.6px; 
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.belg-three-card p {
  margin: 0;
  color: #000000;
  font-size: 16px;
  line-height: 1.5;


  height: 96px; 
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}.belg-news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
  align-items: start;
}



.belg-main-news {
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.belg-main-news__image {
  width: 100%;

  flex-shrink: 0;
  overflow: hidden;
    border-radius: 4px;

}

.belg-main-news__image img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.belg-main-news h2 {
  margin-bottom: 16px;
  margin-top: 20px;
  color: #000;
  font-size: 24px;
  font-weight: 700;
}

.belg-main-news p {
  margin: 0;
  color: #000;
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.5;
}



.belg-side-news {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.belg-small-news {
  height: 200px;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 10px;
  align-items: start; 
}

.belg-small-news__image {
  overflow: hidden;
  height: 100%;
  min-height: 190px; 
  border-radius: 4px;
}

.belg-small-news__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.belg-small-news__content {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.belg-small-news h3 {
  margin-bottom: 12px;
  margin-top: 0;
  color: black;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;


  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.belg-small-news p {
  margin: 0;
  color: #000;
  font-size: 15px;
  line-height: 1.4;


  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 800px) {
        .belg-hero h1 {
  font-size: 28px;

}
.belg-button{
    max-width: 100%;
}
.belg-hero p {

  font-size: 20px;

}
.belg-hero {
 flex-direction: column-reverse;
}

.belg-hero__content {
padding-top: 0;
}

.belg-three-grid{
      grid-template-columns: repeat(1, 1fr);
}
}


  @media (max-width: 800px) {

  .belg-news-grid {
    grid-template-columns: 1fr;
  }

  .belg-side-news {
    grid-template-rows: auto;
  }

 .belg-news-grid {
    display: grid;
    grid-template-columns: 1fr;

  }

  .belg-main-news {
    width: 100%;
  }






  .belg-side-news {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

  }

  .belg-small-news {
    display: flex;
    flex-direction: column;

    min-width: 0;
  }

  .belg-small-news__image {
    width: 100%;
    height: 120px;
  }

  .belg-small-news__content {
    padding: 0;
  }




}


