@media only screen and (min-width: 982px) {
   

    #custom-layout-row .et_pb_column_1_2 {
        margin-right: 80px;
    }

    #custom-layout-row .et_pb_column:first-child {
        flex: 0 0 405px;
        max-width: 405px;
    }

    #custom-layout-row .et_pb_column:last-child {
        flex: 1;
    }
}

.btn-tag-archives {
  padding: 10px 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(12px, 2vw, 14px);
}
.btn-tag-archives svg {
  transition: color 0.2s ease, fill 0.2s ease, stroke 0.2s ease;
}
.btn-tag-archives:hover svg path {
  stroke: #7A9DB0 !important;
}
.btn-tag-archives:hover {
  background: #EBF1F4;
  color: #7A9DB0;
  border-color: #7A9DB0;
}
.swiper-pagination {
  bottom: 0 !important;
}
.poster-slider {
  width: 100%;
  padding-bottom: 64px;
}
.poster-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.poster-slider .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.poster-slider .swiper-pagination-bullet {
  background: #B3C7D2;
  opacity: 1;
}
.poster-slider .swiper-pagination-bullet-active {
  background: #2F7084;
  opacity: 1;
}

.press-list_component {
  width: 100%;
}

.press-list_item {
  padding: 1.5rem 1rem;
  border-bottom: 1px solid #B3C7D2;
}

.press-list_meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
	margin-bottom: 8px;
}

.press-list_date {
  font-size: clamp(12px, 2vw, 14px);
  color: #788891;
}

.press-list_source {
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 700;
  color: #788891;
  text-align: right;
}

.press-list_title {
  color: #1C2226;
  margin-bottom: 0;
}

.gallery_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

.gallery_item {
  position: relative;
  aspect-ratio: 405 / 271;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.1);
}

.gallery_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 980px) {
  .gallery_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media screen and (max-width: 479px) {
  .gallery_grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
        
.c-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}

.c-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    border: 1px solid #B3C7D2;
    border-radius: 4px;
    color: #3A4047;
    text-decoration: none;
    font-size: clamp(14px, 2vw, 16px);
    background: #fff;
    transition: all 0.2s ease;
}

.c-pagination .page-numbers:hover {
    border-color: #42738E;
    color: #245570;
}

.c-pagination .page-numbers.current {
    background-color: #245570;
    border-color: #245570;
    color: #fff;
}

.c-pagination .page-numbers.dots {
   border-color: transparent;
    background: transparent;
    cursor: default;
    align-self: flex-end;
    justify-self: flex-end;
    color: #788891;
    height: auto;
}


.video-preview_component {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000000;
}

.video-preview_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-preview_video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-preview_video::-webkit-media-controls-start-playback-button,
.video-preview_video::-webkit-media-controls-play-button,
.video-preview_video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
}

.video-preview_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.1); 
}

.video-preview_play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  background: none;
  border: none;
  padding: 0;
  pointer-events: none;
}

.video-preview_title-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 32px;
  box-sizing: border-box;
}

.video-preview_title {
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(24px, 2vw, 32px);
  margin: 0;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.press_list {
            display: flex;
            flex-direction: column;
            gap: 20px;
            width: 100%;
        }
        .press_item {
            display: grid;
            grid-template-columns: 260px 1fr;
            gap:40px;
            background-color: #ffffff;
            border-radius: 12px;
            padding: 24px;
            border: 1px solid rgba(194, 199, 204, 0.15);
        }
        .press_image-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 4 / 3;
            overflow: hidden;
            border-radius: 6px;
        }
        .press_image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .press_content-wrapper {
            display: flex;
            flex-direction: column;
			gap: 16px;
        }
        .press_meta {
            font-size: clamp(12px, 2vw, 14px);
            color: #58666E;
        }
        .press_meta-source {
            font-weight: 700;
            color: #58666E;
			text-transform: uppercase;

        }
        .press_meta-divider {
            margin: 0 4px;
			 color: #58666E;
        }
        .press_heading {
            font-size: clamp(16px, 2vw, 20px);
            color: #1C2226;
            font-weight: 700;
			padding: 0;
        }
        .press_paragraph {
            font-size: clamp(14px, 2vw, 16px);
            color: #3A4047;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .press_link {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: clamp(14px, 2vw, 16px);
            font-weight: 700;
            color: #091F2C;
            text-decoration: none;
            transition: color 0.2s ease;
        }
		
		.press_link:hover {
		   color: #7A9DB0;
		}
		.press_link:hover svg path {
  stroke: #7A9DB0 !important;
}
        @media (max-width: 768px) {
            .press_item {
                grid-template-columns: 1fr;
                gap: 1.25rem;
                padding: 1.25rem;
            }
            .press_image-wrapper {
                aspect-ratio: 16 / 9;
            }
        }


/* Document List Container */
.documents_list {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
}
 .document_row.line-top {
      border-top: 1px solid #B3C7D2;
      border-bottom: none;
 }
       
.document_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 16px;
    border-bottom: 1px solid #B3C7D2;
    gap: 32px;
}

.document_info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.document_meta {
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 400;
    color: #788891;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}
.document-lastest-color {
	 color: #7A9DB0;
}
.document_title {
    font-size: clamp(16px,2vw,20px);
    font-weight: 700;
    color: #1C2226;
    margin: 0 0 12px 0;
}

.doc-excerpt {
    font-size: clamp(14px, 2vw, 16px);
    color: #4F758B;
    margin: 0;
}
.doc-excerpt-2 {
	 font-size: clamp(14px, 2vw, 16px);
    color: #58666E;
    margin: 0;
}
.document_actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.action_link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #091F2C;
    font-weight: 700;
    text-decoration: none;
    font-size: clamp(14px, 2vw, 16px);
    transition: color 0.2s ease, opacity 0.2s ease;
}

.action_link:hover {
   color: #7A9DB0;
}

.action_link:hover span {
	color: #7A9DB0 !important;
}
.action_link:hover svg path {
  stroke: #7A9DB0 !important;
}


@media (max-width: 768px) {
    .document_row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 14px;
    }

    .document_actions {
        justify-content: flex-start;
        width: 100%;
        gap: 20px;
        padding-top: 4px;
    }
	.audio-container {
		gap: 24px;
		grid-template-columns: 1fr;
	}
}

.audio-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); 
  column-gap: 32px;
	row-gap: 40px;
  width: 100%;
  box-sizing: border-box;
}
.audio-card {
 width: 100%;
  height: 100%; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 624px;
  background-color: #ffffff;
  border: 1px solid #D6DCE0;
  border-radius: 8px;
  padding: 24px;
  box-sizing: border-box;
}

.audio-card_content {
  margin-bottom: 24px;
}

.audio-card_heading {
  margin: 0;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 700;
  line-height: 1.4;
  color: #1C2226;
}

.audio-card_media {
  width: 100%;
}

.audio-card_player {
  display: block;
  width: 100%;
  border-radius: 9999px;
  background-color: #ECEEF0;
  outline: none;
}

.copyright-text {
  font-size: clamp(12px, 2vw, 14px);
  color: #3A4047;
}

.copyright-text a {
  color: #2F7084; 
  text-decoration: underline; 
}
@media (max-width: 768px) {
	.audio-container {
		gap: 24px;
		grid-template-columns: 1fr;
	}
	.audio-card {
		max-width: 100%;
	}
}