@import url('./style.css');


.media-section {
  height: calc(100vh - var(--navbar-height));
}

.media-section-container {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 7%;
}

.media-section-container-1 {
  background-color: #032545;
}

.media-section-container-2 {
  max-height: calc(100vh - var(--navbar-height));
  min-height: calc(100vh - var(--navbar-height));
  display: flex;
  flex-direction: column;
  overflow: scroll;
  gap: 4rem;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.media-section-container-2::-webkit-scrollbar {
  display: none;
}


.media-content-title-1 {
  color: #96C3D5;
  font-size: .8rem;
  font-family: var(--franie-semi-bold-font-family);
}


.media-content-title-2 {
  color: #313131;
  font-size: 2.3rem;
  font-family: var(--franie-bold-font-family);
}


.media-content {
  color: #96C3D5;
  font-size: .9rem;
  font-family: var(--franie-semi-bold-font-family);
  margin-top: 1.4rem;
}

.media-content-date {
  color: #96C3D5;
  font-size: 2.6rem;
  font-family: var(--franie-extra-bold-font-family);
  margin-top: 1.4rem;
}

.media-border-bottom {
  border-bottom: 1px solid #96C3D5;
  width: 100%;
}

.media-gallery {
  width: 24%;
}
.media-border-bottom img{
  width: 100%;
  height: 15rem;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .media-gallery {
    width: 48%;
  }

}

@media screen and (max-width: 768px) {
  .media-section-container-1 .left-bracket-title-white-general .content .title-2 {
    font-size: 1rem;
  }

}