@charset "UTF-8";
/**
 * News Posts Component Styles
 * Optimized for performance and accessibility
 */
/* Container */
.news_posts_container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 100px 30px;
}

/* Section Title */
.news_posts_title {
  font-family: "Clash Grotesk", sans-serif;
  font-weight: 500;
  font-size: 42px;
  color: #1F2C4C;
  margin-top: 0;
  margin-bottom: 50px;
}

/* Main Wrapper */
.news_posts_wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: start;
}

/* Left Navigation */
.news_posts_navigation {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-right: -150px;
  right: 150px;
  gap: 25px;
}

.news_posts_nav_item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 30px 30px 30px 95px;
  background: white;
  color: #1F2C4C;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.9rem;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 10px;
}
.news_posts_nav_item svg {
  fill: #1F2C4C;
  max-width: 30px;
  width: 100%;
  rotate: 45deg;
  transition: 0.3s all;
}

.news_posts_nav_item:hover {
  background: #1F2C4C;
  box-shadow: 0 2px 8px rgba(52, 73, 94, 0.2);
  color: white;
}
.news_posts_nav_item:hover svg {
  fill: white;
  max-width: 30px;
  transition: 0.3s all;
}

.news_posts_nav_item--active {
  background: #1F2C4C;
  box-shadow: 0 2px 8px rgba(52, 73, 94, 0.2);
  color: white;
}
.news_posts_nav_item--active svg {
  fill: white;
  max-width: 30px;
  transition: 0.3s all;
}

.news_posts_nav_icon {
  margin-right: 0.75rem;
  font-size: 0.8rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.news_posts_nav_item--active .news_posts_nav_icon,
.news_posts_nav_item:hover .news_posts_nav_icon {
  transform: translateX(2px);
}

.news_posts_nav_title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-left: 30px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 19px;
}

/* Right Display Area */
.news_posts_display {
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  bottom: 90px;
  margin-bottom: -90px;
}

.news_posts_display_link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.news_posts_container_inner {
  background: #DCD8CD;
  padding: 50px;
  border-radius: 10px;
}

/* Image Container */
.news_posts_image_container {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #e9ecef;
}

.news_posts_image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.news_posts_display_link:hover .news_posts_image {
  transform: scale(1.05);
}

.news_posts_image_placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.news_posts_image_placeholder::before {
  content: "📰";
  font-size: 3rem;
  opacity: 0.5;
}

/* Content Area */
.news_posts_content {
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  background: #1F2C4C;
  padding: 35px 45px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  bottom: 100px;
  margin-bottom: -100px;
}

.news_posts_content_title {
  color: white;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 19px;
  margin-top: 0;
}

.news_posts_content_excerpt {
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 18px;
}

.news_posts_read_more {
  color: white;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 19px;
  text-decoration: underline;
}

/* Fade Animation Classes */
.news_posts_display--fade-out {
  opacity: 0;
  transform: translateY(10px);
}

.news_posts_display--fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Loading State */
.news_posts_display--loading {
  pointer-events: none;
}

.news_posts_display--loading .news_posts_content {
  opacity: 0.7;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .news_posts_nav_item,
  .news_posts_display,
  .news_posts_image,
  .news_posts_content,
  .news_posts_read_more::after {
    transition: none;
  }
  .news_posts_display:hover {
    transform: none;
  }
  .news_posts_display_link:hover .news_posts_image {
    transform: none;
  }
}
/* High Contrast Support */
@media (prefers-contrast: high) {
  .news_posts_nav_item {
    border: 2px solid currentColor;
  }
  .news_posts_display {
    border: 2px solid #2c3e50;
  }
}
@media only screen and (max-width: 1500px) and (min-width: 1200px) {
  .news_posts_nav_item {
    padding: 20px;
  }
  .news_posts_navigation {
    margin-right: unset;
    right: unset;
  }
  .news_posts_container {
    max-width: 100%;
    width: 100%;
  }
  .news_posts_container_inner {
    margin-right: 65px;
  }
  .news_posts_nav_title {
    font-size: 15px;
  }
  .news_posts_nav_title {
    font-size: 17px;
  }
  .news_posts_image_container {
    height: 440px;
  }
}
@media only screen and (max-width: 1199px) and (min-width: 900px) {
  .news_posts_nav_item {
    padding: 20px;
  }
  .news_posts_navigation {
    margin-right: unset;
    right: unset;
  }
  .news_posts_container {
    max-width: 100%;
    width: 100%;
  }
  .news_posts_container_inner {
    margin-right: 65px;
  }
  .news_posts_nav_title {
    font-size: 15px;
  }
  .news_posts_nav_title {
    font-size: 17px;
  }
  .news_posts_image_container {
    height: 440px;
  }
  .news_posts_content {
    padding: 35px 25px;
  }
  .news_posts_content_excerpt, .news_posts_content_title {
    padding-right: 60px;
  }
}
@media only screen and (max-width: 899px) and (min-width: 600px) {
  .news_posts_nav_item {
    padding: 20px;
  }
  .news_posts_navigation {
    margin-right: unset;
    right: unset;
    width: 100%;
  }
  .news_posts_container {
    max-width: 100%;
    width: 100%;
  }
  .news_posts_container_inner {
    margin-right: 65px;
  }
  .news_posts_nav_title {
    font-size: 15px;
  }
  .news_posts_nav_title {
    font-size: 17px;
  }
  .news_posts_image_container {
    height: 340px;
  }
  .news_posts_content {
    padding: 25px;
    max-width: 100%;
  }
  .news_posts_content_excerpt, .news_posts_content_title {
    padding-right: 60px;
    font-size: 17px;
  }
  .news_posts_read_more {
    font-size: 17px;
  }
  .news_posts_wrapper {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
  }
}
@media only screen and (max-width: 599px) {
  .news_posts_nav_item {
    padding: 20px;
  }
  .news_posts_navigation {
    margin-right: unset;
    right: unset;
    width: 100%;
  }
  .news_posts_container {
    max-width: 100%;
    width: 100%;
    padding: 75px 0px;
  }
  .news_posts_container_inner {
    padding: 50px 30px;
    border-radius: 0;
  }
  .news_posts_nav_title {
    font-size: 15px;
  }
  .news_posts_nav_title {
    font-size: 17px;
    margin-left: 10px;
  }
  .news_posts_image_container {
    height: 240px;
  }
  .news_posts_content {
    padding: 25px;
    max-width: 100%;
  }
  .news_posts_content_excerpt, .news_posts_content_title {
    padding-right: 60px;
    font-size: 15px;
  }
  .news_posts_read_more {
    font-size: 15px;
  }
  .news_posts_wrapper {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
  }
  .news_posts_title {
    margin-bottom: 110px;
    font-size: 34px;
    line-height: 34px;
  }
}/*# sourceMappingURL=news_posts.css.map */