.dynamic-blog-module {
  padding-left: 5%;
  padding-right: 5%;
}

.dynamic-blog-wrapper {
  width: 100%;
}

.d-blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 1rem;
}

.d-blog-header h2 {
  margin: 0 !important;
}

  .container {
  width: 100%;
  max-width: 1900px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 7rem;
  padding-bottom: 7rem;
}
  

.osk-btn-link {
  text-decoration: none;
}

.osk-btn-link:hover {
  text-decoration: none;
}

.osk-btn {
    display: flex;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 400;
    padding: 12px 30px;
    border: 1.5px solid #1A333C;
    border-radius: 300px;
    background-color: #00000000;
    color: #1A333C;
    cursor: pointer;
    transition: all 0.2s ease-out;
    text-decoration: none;
    outline: none;
    gap: 0.5rem;
    white-space: nowrap;
  }

.blog-post-list {
  margin: 0 !important;
  padding: 0 !important;
}

.osk-btn .icon {
    margin-left: 5px;
  }
  
.osk-btn:hover {
    background-color: #B4DAC3;
    color: #1A333C;
    border-color: #B4DAC3;
  }
  
.osk-btn:hover .icon {
    transform: rotate(45deg);
    transition: all 0.2s ease-out, transform 0.2s ease-out;
  }

.line-wrapper {
  width: 100%;
  max-width: 1900px;
}

.line {
  width: 100%;
  height: 1px;
  background-color: #1A333C;
}

.news-module {
  display: grid;
  grid-template-columns: 45% 55%;
  grid-gap: 7rem;
  align-items: center;
  width: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.image-container {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  position: relative;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}


.text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  justify-content: center;
}
  
.date {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
}

.text-container h2 {
  font-size: 2rem;
  max-width: 80%;
  word-wrap: break-word;
  word-break: break-word;
}

.text-container p {
  max-width: 80%;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 150%;
  margin: 0px;
  word-wrap: break-word;
  word-break: break-word;
  margin-bottom: 1rem;
  }

ul {
  list-style-type: none;
}



@media (max-width: 933px) { 
  .news-module {
    grid-template-columns: 1fr;
    grid-gap: 2rem;
  }
 
  .date {
  margin-bottom: 1rem; 
}
  .text-container h2 {
    font-size: 2rem;
    max-width: 100%;
  }
  
  .text-container p {
    margin-bottom: 1rem; 
    padding-right: 0; 
    max-width: 100%;
  }

}

@media (max-width: 480px) {
  .latest-post-heading-wrapper .osk-btn {
    display: none;
  }
  
  .d-blog-header h2 {
  margin: 0 !important;
  font-size: 2rem;
    
    
}
  .d-blog-header {
  align-items: flex-end;
}





