/* Base  */
h1.huge-heading, h2.huge-heading {
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 900;
    font-size: 57px;
    line-height: 70px;
    color: #742f8a;
    letter-spacing: 0%;
}

h2.huge-heading-white {
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 900;
    font-size: 57px;
    line-height: 70px;
    color: #fff;
    letter-spacing: 0%;
}

h2.featured-article-headline {
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 42px;
    color: #3C1951;
}
     

h3.medium-heading {
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 32px;
    color: #3C1951;
}

p.large-body {
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.6);
}

p.small-body {
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.6);
}

p.article {
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #5D5C69;
}

span.small-heading-white {
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #FFF;
}

span.x-small-heading {
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #742f8a;
}

span.event-number {
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 900;
    font-size: 57px;
    line-height: 57px;
    color: #742f8a;
}

@media (max-width: 1069.98px) {
    .news-overview-modules {
    padding-left: 0 !important;
    padding-right: 0 !important;
    }
}

/* Archive Template */
.news-archive {
    padding: 64px 0;
  }
  
  .news-archive .archive-header {
    margin-bottom: 24px;
  }
  
  .news-archive .archive-header h1 {
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 900;
    font-size: 57px;
    line-height: 70px;
    color: #742f8a;
    letter-spacing: 0%;
  }
  
  .news-archive .filter-section {
    margin-bottom: 64px;
  }
  
  .news-archive .filter-form {
    display: flex;
    gap: 20px;
    align-items: end;
    flex-wrap: wrap;
  }
  
  .news-archive .search-wrapper {
    position: relative;
    flex: 1;
    max-width: 500px;
  }
  
  .news-archive .search-input {
    width: 100%;
    padding: 13px 24px 17px 16px !important;
    border: 2px solid #b9b9b9;
    font-size: 16px !important;
    font-family: neuzeit-grotesk, sans-serif !important;
    line-height: normal;
    transition: border-color 0.3s ease;
    height: auto;
  }
  
  .news-archive .search-input:focus {
    outline: none;
    border-color: #742f8a;
  }
  
  .news-archive .search-submit {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  
  .news-archive .filter-dropdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .news-archive .filter-dropdown label {
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #3C1951;
    margin-bottom: 0;
  }
  
  .news-archive .filter-select {
    padding: 12px 16px;
    border: 2px solid #B9B9B9;
    font-family: neuzeit-grotesk, sans-serif;
    font-size: 16px;
    background: #ffffff !important;  /* Add !important to force override */
    min-width: 150px;
    cursor: pointer;
    color: #742f8a;
    
    /* ADD THESE LINES to remove browser styling: */
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-color: #ffffff !important;
  }

  .news-archive .filter-select option {
    background-color: #ffffff !important;
    color: #742f8a !important;
    padding: 8px 12px;
  }

  /* Custom Dropdown Styles - Add this to your CSS */
.news-archive .custom-dropdown {
    position: relative;
    display: inline-block;
    min-width: 200px;
  }
  
  .news-archive .dropdown-selected {
    padding: 12px 40px 12px 16px;
    border: 2px solid #B9B9B9;
    background: white;
    cursor: pointer;
    font-family: neuzeit-grotesk, sans-serif;
    font-size: 16px;
    color: #742f8a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.3s ease;
  }
  
  .news-archive .dropdown-selected:hover {
    border-color: #742f8a;
  }
  
  .news-archive .dropdown-arrow {
    border: solid #742f8a;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
  }
  
  .news-archive .custom-dropdown.open .dropdown-arrow {
    transform: rotate(-135deg);
  }
  
  .news-archive .dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #742f8a;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .news-archive .custom-dropdown.open .dropdown-options {
    display: block;
  }
  
  .news-archive .dropdown-option {
    padding: 12px 16px;
    cursor: pointer;
    color: #742f8a;
    background: white;
    transition: background-color 0.2s ease;
    font-family: neuzeit-grotesk, sans-serif;
    font-size: 16px;
  }
  
  .news-archive .dropdown-option:hover {
    background: #f8f5fb;
  }
  
  .news-archive .dropdown-option.selected {
    background: #742f8a;
    color: white;
  }
  
  /* Hide the hidden inputs */
  .news-archive .filter-dropdown input[type="hidden"] {
    display: none;
  }
  
  /* Mobile responsive */
  @media (max-width: 768px) {
    .news-archive .custom-dropdown {
      min-width: 100%;
      width: 100%;
    }
    
    .news-archive .dropdown-options {
      max-height: 150px;
    }
  }
  
  /* For the selected/highlighted option */
  .news-archive .filter-select option:checked,
  .news-archive .filter-select option:hover {
    background-color: #742f8a !important;
    color: #ffffff !important;
  }
  
  .news-archive .filter-select:focus {
    outline: none;
    border-color: #742f8a;
  }
  
  .news-archive .apply-filters-btn {
    padding: 12px 24px;
    background: #742f8a;
    color: white;
    border: none;
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .news-archive .apply-filters-btn:hover {
    background: #5a2391;
  }
  
  .news-archive .archive-results {
    display: grid;
    gap: 24px;
  }
  
  .news-archive .archive-item {
    overflow: hidden;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 24px;
    display: flex;
  }
  
  .news-archive .archive-item:hover .archive-item-content h2 a {
    /* text-decoration: underline; */
  }
  
  .news-archive .archive-item-image {
    width: 300px;
    height: 200px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
  }
  
  .news-archive .archive-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .news-archive .placeholder-image {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .news-archive .archive-item-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: #F0B323;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.news-archive .archive-item:hover .image-overlay {
    transform: translateY(0);
}
  
  .news-archive .archive-item-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* Category link styling */
  .news-archive .category-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: color 0.3s ease;
  }

  .news-archive .category-link:hover {
    color: #742f8a;
    text-decoration: underline;
  }

  .news-archive .category-link:hover .x-small-heading {
    color: #742f8a;
  }
  
  .news-archive .archive-item-content h2 {
    margin: 0;
    line-height: 36px;
    font-size: 28px;
  }

  /* Article title link styling */
  .news-archive .archive-item-content h2 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
  }

  .news-archive .archive-item-content h2 a:hover {
    text-decoration: underline;
  }
  
  .news-archive .article-date {
    color: rgba(0,0,0,.6);
    margin: 0;
  }
  
  .news-archive .archive-item-content .article {
    margin: 0;
    line-height: 1.5;
  }
  
  .news-archive .pagination-wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: center;
  }
  
  .news-archive .pagination-list {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
  }
  
  .news-archive .pagination-item a,
  .news-archive .pagination-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 8px 12px;
    text-decoration: none;
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease;
    border-radius: 50%;
  }
  
  .news-archive .pagination-item a {
    background: white;
    color: #5D5C6A;
    border: 1px solid #e0e0e0;
  }
  
  .news-archive .pagination-item a:hover {
    background: #f8f9fa;
    color: #742f8a;
  }
  
  .news-archive .pagination-item .current {
    background: #BB945C;
    color: white;
    border: 1px solid #BB945C;
  }
  
  .news-archive .pagination-item .prev,
  .news-archive .pagination-item .next {
    background: transparent;
    color: #5D5C6A;
    border: none;
    font-size: 14px;
    min-width: auto;
    padding: 8px 16px;
    border-radius: 20px;
  }
  
  .news-archive .pagination-item .prev:hover,
  .news-archive .pagination-item .next:hover {
    background: #f8f9fa;
    color: #742f8a;
  }
  
  .news-archive .pagination-item .dots {
    background: transparent;
    color: #5D5C6A;
    border: none;
    cursor: default;
  }
  
  .news-archive .no-results {
    text-align: center;
    padding: 60px 20px;
  }
  
  .news-archive .no-results h2 {
    margin-bottom: 16px;
  }
  
  /* Mobile Styles */
  @media (max-width: 768px) {
    .news-archive {
        padding: 40px 0 64px 0;
    }

    .news-archive .archive-header h1 {
        font-size: 38px;
        line-height: 42px;
    }
    .news-archive .filter-form {
      flex-direction: column;
      align-items: stretch;
    }
    
    .news-archive .search-wrapper {
      min-width: 100%;
      width: 100%;
      margin-top: 0.5rem;
    }
    
    .news-archive .search-input {
      padding: 12px 16px !important;
    }
    
    .news-archive .archive-item {
      flex-direction: row;
      align-items: flex-start;
    }
    
    .news-archive .archive-item-image {
      width: 100%;
      height: 150px;
      flex: 0 0 40%;
    }
    
    .news-archive .archive-item-content {
      padding: 0 16px;
    }
    .news-archive .archive-item-content h2 {
        font-size: 20px;
        line-height: 30px;
    }
    
    .news-archive .pagination-list {
      flex-wrap: wrap;
      gap: 4px;
    }
    
    .news-archive .pagination-item a,
    .news-archive .pagination-item span {
      min-width: 35px;
      height: 35px;
      font-size: 14px;
    }
  }

.news-archive .reset-filters-btn {
    padding: 12px 24px;
    background: transparent;
    color: #742f8a;
    border: 2px solid #b9b9b9;
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 400;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .news-archive .reset-filters-btn:hover {
    background: #742f8a;
    border: 2px solid #742f8a;
    color: white;
  }
  /* End Archive Template */

  /* Article Hero */
  .post-single-hero {
    padding: 40px 0 0 0;
}

/* Hide the previous author module */
.block.authorship {
    display: none !important;
}


.back-link-wrapper {
    margin-bottom: 40px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #5D5C69;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    /* opacity: 0.7; */
}

.back-link svg {
    transition: transform 0.3s ease;
}

.back-link:hover svg {
    transform: translateX(-2px);
}

.post-hero-content {
    max-width: 738px;
    margin: 0 auto;
}

.post-category {
    margin-bottom: 16px;
}

.post-category a {
    color: #BB945C;
}

.post-category a:hover {
    text-decoration: underline;
}

.post-category span {
    color: #BB945C;
    font-size: 16px;
}

.post-headline {
    margin-bottom: 24px;
}

.post-meta {
    margin-bottom: 32px;
}

.post-meta p {
    margin: 0;
}

.post-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
}

.copy-link-btn,
.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.copy-link-btn:hover,
.share-btn:hover {
    background-color: rgba(116, 47, 186, 0.1);
}

.copy-link-btn {
    padding: 8px;
}

.share-btn span {
    margin: 0;
    color: #742f8a;
}

.post-featured-image {
    margin-bottom: 0;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    margin-top: 12px;
}

.image-caption p {
    margin: 0;
    font-weight: bold;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .post-single-hero {
        padding: 20px 0 0 0;
    }
    .post-single-hero h1 {
        font-size: 38px;
        line-height: 42px;
    }
    
    .back-link-wrapper {
        margin-bottom: 24px;
    }
    
    .post-headline {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 20px;
    }
    
    .post-meta {
        margin-bottom: 24px;
    }
    
    .post-actions {
        margin-bottom: 32px;
        gap: 8px;
    }
    
    .share-btn span {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .post-headline {
        font-size: 38px;
        line-height: 42px;
    }
    
    .post-actions {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
}

/* End Article Hero */

/* Article Text Block Module *//* Article Text Block Module */
.article-text-block {
    padding: 64px 0;
}

.article-text-content {
    max-width: 738px;
    margin: 0 auto;
}

.article-text-block .featured-article-headline {
    margin-bottom: 24px;
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 42px;
    color: #742f8a;
}

.article-text-body {
    font-family: neuzeit-grotesk, sans-serif;
}

/* Style content within the WYSIWYG */
.article-text-body p {
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: #5D5C69;
    margin-bottom: 24px;
}

.article-text-body p:last-child {
    margin-bottom: 0;
}

.article-text-body h1,
.article-text-body h2,
.article-text-body h3,
.article-text-body h4,
.article-text-body h5,
.article-text-body h6 {
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 700;
    color: #5D5C69;
    margin-bottom: 16px;
    margin-top: 32px;
}

.article-text-body h1:first-child,
.article-text-body h2:first-child,
.article-text-body h3:first-child,
.article-text-body h4:first-child,
.article-text-body h5:first-child,
.article-text-body h6:first-child {
    margin-top: 0;
}

.article-text-body h2 {
    font-size: 32px;
    line-height: 38px;
}

.article-text-body h3 {
    font-size: 24px;
    line-height: 30px;
}

.article-text-body h4 {
    font-size: 20px;
    line-height: 28px;
}

.article-text-body ul,
.article-text-body ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.article-text-body li {
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #5D5C69;
    margin-bottom: 8px;
}

.article-text-body a {
    color: #5D5C69;
    font-weight: 400 !important;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.article-text-body a:hover {
    color: #742f8a;
}

.article-text-body blockquote {
    border-left: 4px solid #742f8a;
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
}

.article-text-body blockquote p {
    color: #5D5C69;
    font-weight: 500;
}

.article-text-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 24px 0;
}

.article-text-body strong,
.article-text-body b {
    font-weight: 700;
    color: #5D5C69;
}

.article-text-body em,
.article-text-body i {
    font-style: italic;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .article-text-block {
        padding: 40px 0;
    }
    
    .article-text-body p,
    .article-text-body li {
        font-size: 18px;
        line-height: 26px;
    }
    
    .article-text-body h2 {
        font-size: 28px;
        line-height: 34px;
    }
    
    .article-text-body h3 {
        font-size: 22px;
        line-height: 28px;
    }
    
    .article-text-body h4 {
        font-size: 18px;
        line-height: 24px;
    }
    
    .article-text-body blockquote {
        padding-left: 16px;
        margin: 24px 0;
    }
}

/* End Article Text Block Module */

/* Article Image Block */
.article-image-block {
}

.article-image-block .image-container {
    max-width: 738px;
    margin: 0 auto;
}

.article-images {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.article-images.single-image {
    justify-content: center;
}

.article-images.single-image .article-image {
    max-width: 738px;
    width: 100%;
}

.article-images.two-images {
    justify-content: space-between;
}

.article-images.two-images .article-image {
    width: calc(50% - 10px);
}

.article-image {
    height: 530px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.article-image-caption {
    max-width: 738px;
}

.article-image-caption p {
    margin: 0;
    font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .article-image-block {
        padding: 0 16px;
    }
    
    .article-images {
        flex-direction: row;
        gap: 15px;
    }
    
    .article-images.two-images .article-image {
        width: 100%;
        height: 250px;
    }
    
    .article-images.single-image .article-image {
        max-width: 100%;
        height: 500px;
    }
    
    .article-image-caption {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .article-image-block {

    }
    
    .article-images {
        gap: 12px;
        margin-bottom: 15px;
    }
}

/* End Article Image Block */

/* Article Blockquote */

.article-blockquote-module .blockquote-container {
    max-width: 738px;
    margin: 0 auto;
}

.article-blockquote {
    border-left: 3px solid #F0B323;
    padding: 0 40px;
    margin: 0;
    position: relative;
}

.article-blockquote .quote-text {
    font-family: Georgia, 'Times New Roman', Times, serif, sans-serif;
    font-weight: 400;
    font-size: 38px;
    line-height: 48px;
    color: #5D5C69;
    margin: 0 0 16px 0;
}

.article-blockquote .quote-credit {
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    color: #5D5C69;
    font-style: normal;
    display: block;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .article-blockquote-module {
        padding-left: 16px;
        padding-right: 16px;
    }
    .article-blockquote {
        padding: 20px 24px;
    }
    
    .article-blockquote .quote-text {
        font-size: 20px;
        line-height: 28px;
    }
    
    .article-blockquote .quote-credit {
        font-size: 14px;
        line-height: 20px;
    }
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .article-blockquote {
        padding: 25px 32px;
    }
    
    .article-blockquote .quote-text {
        font-size: 22px;
        line-height: 30px;
    }
}
/* End Article Blockquote */
/* Related Posts Module */
.related-posts-module {
}

.related-posts-wrapper {
    max-width: 738px;
    margin: 0 auto;
}

.related-posts-title {
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    color: #5D5C69;
    padding-bottom: 8px;
}

.related-posts-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
    padding: 24px 0;
}

.related-post-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0;
    background: transparent;
}

.related-post-image {
    width: 220px;
    height: 146px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
}

.related-post-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: #F0B323;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.related-post-item:hover .image-overlay {
    transform: translateY(0);
}

.related-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 10px;
}

.related-post-title {
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #5D5C69;
    margin: 0;
}

.related-post-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-top: auto;
    transition: all 0.3s ease;
}

.action-text {
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #742F8A;
    transition: color 0.3s ease;
}

.related-post-action svg {
    transition: transform 0.3s ease, color 0.3s ease;
    color: #742F8A;
}

.external-icon {
    margin-left: 4px;
}

.related-post-action:hover .action-text {
    color: #742F8A;
}

.related-post-action:hover svg {
    color: #742F8A;
    transform: translateX(4px);
}

.related-post-action:hover .external-icon {
    transform: translateX(0) translateY(-2px);
}

.related-post-item:hover .related-post-image img {
    /* transform: scale(1.05); */
}

/* Mobile Styles */
@media (max-width: 768px) {
    .related-posts-module {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .related-post-item {
        flex-direction: row;
        gap: 15px;
        align-items: flex-start;
    }
    
    .related-post-image {
        flex: 0 0 33%;
        height: 100%;
    }

    .related-post-image img {
        width: 125px;
        height: 125px;
    }
    .related-post-content {
        padding-top: 0;
        gap: 12px;
    }
    
    .related-post-title {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (max-width: 480px) {
    .related-posts-title {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 20px;
    }
    
    .related-posts-list {
        gap: 20px;
    }
}
/* End Article Related Posts */
/* Press Inquiry Section */
.press-inquiry-section {
    margin-top: 64px;
    margin-bottom: 64px;
}

.press-inquiry-block {
    padding: 24px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    max-width: 738px;
    margin: 0 auto;
}

.press-inquiry-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.press-contact-image {
    flex-shrink: 0;
}

.press-contact-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.press-contact-text {
    flex: 1;
}

.press-contact-text p.small-body {
    margin: 0;
    color: #5D5C69;
    max-width: 450px;
}

.press-contact-text a {
    color: #5D5C69;
    text-decoration: underline;
    font-weight: 400 !important;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .press-inquiry-section {
        padding: 40px 0;
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .press-inquiry-block {
        padding: 30px 20px;
    }
    
    .press-inquiry-content {
        flex-direction: row;
        text-align: left;
        gap: 20px;
    }
    
    .press-contact-image img {
        width: 100px;
        height: 100px;
    }
}
/* End Press Inquiry Section */

/* Related News Module Styles */
.related-news-module {
    padding: 64px 0;
    background: #F6F1E8;
}

.related-news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.related-news-header h2 {
    margin: 0;
}

.all-news-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.all-news-link:hover {
    transform: translateX(4px);
}

.all-news-link svg {
    transition: transform 0.3s ease;
}

.all-news-link:hover svg {
    transform: translateX(2px);
}

.related-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-news-item {
    overflow: hidden;
}

.related-news-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.related-news-item .overlay {
    border-bottom: 10px solid #F0B323;
    display: none;
}

.related-news-item:hover .overlay {
    display: block;
}

.related-news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.related-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: #F0B323;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.related-news-item:hover .image-overlay {
    transform: translateY(0);
}

.related-news-content {
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: calc(100% - 200px);
}

.related-news-item:hover h3.medium-heading {
    text-decoration: underline;
}

/* Category link styles */
.related-news-category {
    margin: 0;
    display: block;
    text-decoration: none;
    color: #742fba;
    transition: color 0.3s ease;
    cursor: pointer;
    width: fit-content;
}

.related-news-category:hover {
    color: #5a2391;
    text-decoration: underline;
}

.related-news-category:visited {
    color: #742fba;
}

.related-news-title {
    margin: 0;
    line-height: 1.3;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-news-date {
    margin: 0;
    margin-top: auto;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .related-news-module {
        padding: 60px 0;
    }
    
    .related-news-grid {
        gap: 24px;
    }
    
    .related-news-content {
        padding: 20px 0;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .related-news-module {
        padding: 40px 0;
    }
    
    .related-news-header {
        flex-direction: row;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .related-news-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .related-news-item {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
    }

    .related-news-image-link {
        flex: 0 0 40%;
    }

    
    .related-news-image {
        height: 100px;
        width: 100px;
        flex: 0 0 40%;
    }
    
    .related-news-content {
        padding: 0;
        height: auto;
        padding-left: 16px;
        gap: 4px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    
    .related-news-title {
        font-size: 18px;
        line-height: 1.4;
    }
}

/*** Category Toggle Listing Module */

.category-toggle-listing {
    padding: 0 0 0 0;
}

.category-toggle-listing .container {
    max-width: 100%;
    padding: 0 15px;
}

.category-toggle-listing .category-toggle-wrapper {
    max-width: 1140px;
    margin: 0 auto;
}

.category-toggle-listing .category-header {
    margin-bottom: 60px;
}

.category-toggle-listing .category-header h2 {
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 900;
    font-size: 57px;
    line-height: 70px;
    color: #5D5C6980;
    margin: 0;
}

/* Dropdown Wrapper Styles */
.category-toggle-listing .category-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.category-toggle-listing .category-dropdown-trigger {
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: #742f8a;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.category-toggle-listing .category-dropdown-trigger:hover {
    opacity: 0.8;
}

.category-toggle-listing .category-dropdown-trigger:focus {
    outline: 2px solid #742f8a;
    outline-offset: 4px;
}

.category-toggle-listing .category-name {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.category-toggle-listing .dropdown-arrow {
    display: inline-block;
    color: #742f8a;
    vertical-align: middle;
    height: 24px;
    width: 24px;
    transition: transform 0.3s ease;
}

.category-toggle-listing .dropdown-arrow.rotated {
    transform: rotate(180deg);
}

/* Dropdown Menu Styles */
.category-toggle-listing .category-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 280px;
    background: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(116, 47, 138, 0.1);
}

.category-toggle-listing .category-dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.category-toggle-listing .category-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 24px;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border: 1px solid rgba(116, 47, 138, 0.1);
    border-right: none;
    border-bottom: none;
    transform: rotate(45deg);
}

.category-toggle-listing .category-dropdown-item {
    display: block;
    width: 100%;
    padding: 12px 24px;
    background: none;
    border: none;
    text-align: left;
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #3C1951;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.category-toggle-listing .category-dropdown-item:hover {
    background: #f8f9fa;
    color: #742f8a;
}

.category-toggle-listing .category-dropdown-item.active {
    background: #742f8a;
    color: #ffffff;
}

.category-toggle-listing .category-dropdown-item.active::after {
    content: '✓';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

.category-toggle-listing .category-dropdown-item:focus {
    outline: 2px solid #742f8a;
    outline-offset: -2px;
}

/* Posts Grid Styles */
.category-toggle-listing .posts-grid-container {
    position: relative;
    min-height: 400px;
}

.category-toggle-listing .posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: stretch;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.category-toggle-listing .posts-grid.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.category-toggle-listing .post-item {
    position: relative;
    overflow: hidden;
}

.category-toggle-listing .post-item a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.category-toggle-listing .post-image {
    width: 100%;
    height: 165px;
    overflow: hidden;
    position: relative;
}

.category-toggle-listing .post-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: #F0B323;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.category-toggle-listing .post-item:hover .image-overlay {
    transform: translateY(0);
}

.category-toggle-listing .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-toggle-listing .post-item:hover .post-image img {
    transform: scale(1.05);
}

.category-toggle-listing .post-content {
    padding: 17px 0;
}

.category-toggle-listing .post-meta {
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: #742f8a;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
}

.category-toggle-listing .post-title {
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #3C1951;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-toggle-listing .post-item:hover .post-title {
    text-decoration: underline;
}

/* More button styling */
.category-toggle-listing .more-category-item {
    background: #742f8a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.category-toggle-listing .more-category-item a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-toggle-listing .more-category-content {
    text-align: center;
    padding: 40px;
}

.category-toggle-listing .more-category-content h3 {
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    margin: 0 0 20px 0;
}

.category-toggle-listing .more-arrow {
    display: inline-block;
    position: relative;
    transition: transform 0.3s ease;
    color: #FFF;
}

.category-toggle-listing .more-category-item:hover .more-arrow {
    transform: translateX(10px);
}

.category-toggle-listing .more-arrow svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
}

/* Tablet responsive */
@media (max-width: 1024px) {
    .category-toggle-listing .posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .category-toggle-listing .category-header h2 {
        font-size: 38px;
        line-height: 42px;
    }
    
    .category-toggle-listing .more-category-content h3 {
        font-size: 24px;
        line-height: 32px;
    }
    
    .category-toggle-listing .category-dropdown-menu {
        min-width: 240px;
    }
    
    .category-toggle-listing .category-dropdown-item {
        font-size: 16px;
        padding: 10px 20px;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .category-toggle-listing {
        padding: 0 0 64px 0;
    }
    
    .category-toggle-listing .posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-toggle-listing .category-header {
        margin-bottom: 40px;
    }
    
    .category-toggle-listing .category-header h2 {
        font-size: 38px;
        line-height: 42px;
    }

    .category-toggle-listing .category-name {
        font-size: 25px;
        text-align: left;
    }
    
    .category-toggle-listing .dropdown-arrow {
        width: 20px;
        height: 20px;
        margin-left: 8px;
    }
    
    .category-toggle-listing .category-dropdown-menu {
        min-width: 220px;
        left: -20px;
    }
    
    .category-toggle-listing .category-dropdown-menu::before {
        left: 44px;
    }
    
    .category-toggle-listing .category-dropdown-item {
        font-size: 16px;
        padding: 12px 20px;
    }
    
    .category-toggle-listing .post-item a {
        display: flex;
        flex-direction: row;
    }
    
    .category-toggle-listing .post-image {
        height: 115px;
        width: 115px;
        flex: 0 0 33%;
    }
    
    .category-toggle-listing .post-content {
        padding: 16px;
    }
    
    .category-toggle-listing .post-meta {
        font-size: 14px;
        line-height: 20px;
    }
    
    .category-toggle-listing .post-title {
        font-size: 20px;
        line-height: 28px;
    }
    
    .category-toggle-listing .more-category-item {
        margin-top: 40px;
    }
    
    .category-toggle-listing .more-category-content {
        padding: 10px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    
    .category-toggle-listing .more-category-content h3 {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 0;
    }
    
    .category-toggle-listing .more-arrow {
        width: 44px;
        height: 44px;
    }
}

/* Very small mobile */
@media (max-width: 480px) {
    .category-toggle-listing .category-header h2 {
        font-size: 38px;
        line-height: 42px;
    }
    
    .category-toggle-listing .category-dropdown-menu {
        left: 0;
        min-width: 200px;
    }
    
    .category-toggle-listing .category-dropdown-menu::before {
        left: 64px;
    }
}

/* Loading states and animations */
.category-toggle-listing .category-name.loading {
    opacity: 0.5;
}

/* Ensure proper stacking context */
.category-toggle-listing .posts-grid-container {
    z-index: 1;
}

.category-toggle-listing .posts-grid {
    z-index: 2;
}

.category-toggle-listing .posts-grid.active {
    z-index: 3;
}

.category-toggle-listing .category-dropdown-menu {
    z-index: 1000;
}

/* Placeholder styles for missing images */
.category-toggle-listing .post-image .placeholder {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-toggle-listing .post-image .placeholder::after {
    content: '';
    width: 60px;
    height: 60px;
    background: #e0e0e0;
    border-radius: 8px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .category-toggle-listing .category-dropdown-menu {
        border: 2px solid #742f8a;
    }
    
    .category-toggle-listing .category-dropdown-item {
        border-bottom: 1px solid #e0e0e0;
    }
    
    .category-toggle-listing .category-dropdown-item:last-child {
        border-bottom: none;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .category-toggle-listing .category-dropdown-menu,
    .category-toggle-listing .dropdown-arrow,
    .category-toggle-listing .category-name,
    .category-toggle-listing .posts-grid {
        transition: none;
    }
}

/*** End Category Toggle Listing Module */

/*** Featured Article Grid Module */

.news-featured-article-grid {
    padding: 44px 0 64px 0;
    background: #fff;
}

.news-featured-article-grid .news-featured-container {
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

.news-featured-article-grid .news-featured-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.news-featured-article-grid .news-featured-header .headline-wrap {
    display: flex;
    flex-direction: column;
}

.news-featured-article-grid .news-featured-header h2 {
    margin: 0;
    flex: 1;
}

.news-featured-article-grid .news-featured-header p {
    margin: 0;
    flex: 2;
    max-width: 600px;
    margin-top: 8px;
}

.news-featured-article-grid .news-featured-see-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid #742f8a;
    color: #742f8a;
    text-decoration: none;
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.news-featured-article-grid .news-featured-see-more:hover {
    background: #742f8a;
    color: #fff;
}

.news-featured-article-grid .news-featured-see-more svg {
    width: 20px;
    height: 20px;
}

.news-featured-article-grid .news-featured-articles-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 64px;
    align-items: start;
}

.news-featured-articles-grid .vertical-divider {
    background-color: #B7B7B7;
    width: 1px;
    height: 100%;
}

@media (max-width: 768px) {
    .news-featured-articles-grid .vertical-divider {
        display: none;
    }

    .news-featured-article-grid .news-featured-header .headline-wrap {
        padding-bottom: 24px;
    }

    .news-featured-article-grid .news-featured-header .button-wrap {
        display: none;
    }
    .news-featured-article-grid .button-wrap.mobile {
        display: block !important;
        width: 100%;
    }
    .news-featured-article-grid .button-wrap.mobile .news-featured-see-more {
        width: 100%;
        justify-content: center;
    }
}

/* Main Featured Article */
.news-featured-article-grid .news-featured-main-article {
    overflow: hidden;
}

.news-featured-article-grid .news-featured-main-wrapper {
    display: block;
}

.news-featured-article-grid .news-featured-main-image-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.news-featured-article-grid .news-featured-main-image {
    width: 100%;
    height: 360px;
    overflow: hidden;
    position: relative;
}

.news-featured-article-grid .news-featured-main-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: #F0B323;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.news-featured-main-article:hover .image-overlay {
    transform: translateY(0);
}

.news-featured-article-grid .news-featured-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-featured-article-grid .news-featured-main-article:hover .news-featured-main-image img {
    transform: scale(1.05);
}

.news-featured-article-grid .news-featured-main-content {
    padding: 24px 0;
}

.news-featured-article-grid .news-featured-category-link {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    margin-bottom: 12px;
}

.news-featured-article-grid .news-featured-category-link:hover .x-small-heading {
    text-decoration: underline;
}

.news-featured-article-grid .news-featured-title-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.news-featured-article-grid .news-featured-title-link:hover h2.featured-article-headline,
.news-featured-article-grid .news-featured-title-link:hover h3.medium-heading {
    text-decoration: underline;
}

.news-featured-article-grid .news-featured-main-content .x-small-heading {
    display: inline-block;
}

.news-featured-article-grid .news-featured-main-content h2 {
    margin: 0;
    line-height: 1.2;
}

/* Side Articles */
.news-featured-article-grid .news-featured-side-articles {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.news-featured-article-grid .news-featured-article-card {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-featured-article-grid .news-featured-article-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.news-featured-article-grid .news-featured-article-image-link {
    display: block;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
}

.news-featured-article-grid .news-featured-article-image {
    width: 150px;
    height: 100px;
    overflow: hidden;
    position: relative;
}

.news-featured-article-grid .news-featured-article-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: #F0B323;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.news-featured-article-card:hover .image-overlay {
    transform: translateY(0);
}

.news-featured-article-grid .news-featured-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-featured-article-grid .news-featured-article-card:hover .news-featured-article-image img {
    transform: scale(1.05);
}

.news-featured-article-grid .news-featured-article-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-featured-article-grid .news-featured-article-content .news-featured-category-link {
    margin-bottom: 8px;
}

.news-featured-article-grid .news-featured-article-content .x-small-heading {
    display: inline-block;
}

.news-featured-article-grid .news-featured-article-content h3 {
    margin: 0;
    line-height: 1.3;
    font-size: 18px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .news-featured-article-grid {
        padding: 40px 0 64px;
    }
    .news-featured-article-grid .news-featured-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 0;
    }

    .news-featured-article-grid .news-featured-header h2 {
        font-size: 38px;
        line-height: 42px;
    }
    
    .news-featured-article-grid .news-featured-header p {
        max-width: 100%;
    }
    
    .news-featured-article-grid .news-featured-articles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .news-featured-article-grid .news-featured-main-content {
        padding: 14px 0;
    }
    
    .news-featured-article-grid .news-featured-main-image {
        height: 200px;
    }
    .news-featured-article-grid h2.featured-article-headline {
        font-size: 28px;
        line-height: 38px;
    }
    
    .news-featured-article-grid .news-featured-article-wrapper {
        flex-direction: row-reverse;
        align-items: flex-start;
    }
    
    .news-featured-article-grid .news-featured-article-image {
        height: 100px;
    }

    .news-featured-article-grid .news-featured-side-articles {
        gap: 40px;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .news-featured-article-grid .news-featured-articles-grid {
        gap: 30px;
    }

    .news-featured-article-grid .news-featured-article-wrapper {
        flex-direction: row-reverse;
        align-items: flex-start;
    }
    
    .news-featured-article-grid .news-featured-article-image {
        height: 100px;
    }
}

/**
 * Overview Featured Collection Module Styles
 * Full-width background image with purple card overlay on left
 */

 .overview-featured-collection {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    margin-bottom: 64px;
}

/* Dark overlay on background image for better contrast */
.overview-featured-collection .featured-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.overview-featured-collection .container {
    position: relative;
    z-index: 2;
}

.overview-featured-collection .featured-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    max-width: 540px; /* Limit card width */
}

.overview-featured-collection .featured-card {
    background: #3C1951; /* Purple background */
    padding: 46px 30px 64px;
    min-height: 640px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.overview-featured-collection .featured-card .content {
    max-width: 380px;
}

/* .overview-featured-collection .featured-card .content h2 {
    line-height: 58px;
} */

.overview-featured-collection .featured-card:hover h2 {
    text-decoration: underline;
}

.overview-featured-collection .featured-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.overview-featured-collection .category-icon {
    width: 18px;
    height: 18px;
}

.overview-featured-collection .featured-card h2 {
    margin-bottom: 16px;
    color: #fff;
}

.overview-featured-collection .featured-text {
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #FFFFFFBF;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .overview-featured-collection {
        padding: 60px 0;
    }
    
    .overview-featured-collection .featured-card {
        padding: 50px;
    }
}

@media (max-width: 768px) {
    .overview-featured-collection {
        padding: 50px 0;
        min-height: 720px;
        align-items: flex-end;
    }
    
    .overview-featured-collection .featured-card-link {
        max-width: 100%; /* Full width on mobile */
    }
    
    .overview-featured-collection .featured-card {
        padding: 40px 30px;
        min-height: 444px;
    }
    
    .overview-featured-collection .featured-card h2 {
        font-size: 42px;
        line-height: 50px;
    }
    
    .overview-featured-collection .featured-text {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (max-width: 480px) {
    .overview-featured-collection {
        padding: 40px 0;
        min-height: 720px;
    }
    
    .overview-featured-collection .featured-card {
        padding: 30px 20px;
    }
    
    .overview-featured-collection .featured-card h2 {
        font-size: 38px;
        line-height: 42px;
    }
    
    .overview-featured-collection .featured-category {
        padding: 6px 12px;
    }
    
    .overview-featured-collection .category-icon {
        width: 16px;
        height: 16px;
    }
    
    .overview-featured-collection .featured-category span {
        font-size: 12px;
    }
    
}
/* Four Column Module */

.four-column-module {
    padding: 0 0 64px 0;
    background: #fff;
}

.four-column-module .container {
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

.four-column-module .four-column-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.four-column-module .four-column-header .headline-wrap {
    display: flex;
    flex-direction: column;
}

.four-column-module .huge-heading {
    margin-bottom: 8px;
}

.four-column-module .large-body {
    max-width: 800px;
    margin-bottom: 0;
}

.four-column-module .posts-wrapper {
    display: grid;
    gap: 40px;
}

.four-column-module.row .posts-wrapper {
    grid-template-columns: repeat(4, 1fr);
}

/* Vertical column layout (image left, text right) */
.four-column-module.column .posts-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.four-column-module.column .post-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    overflow: hidden;
    padding: 0;
    transition: transform 0.3s ease;
}

.four-column-module.column .post-image-link {
    display: block;
    text-decoration: none;
    flex-shrink: 0;
}

.four-column-module.column .post-image {
    width: 250px;
    height: 165px;
    background-size: cover;
    background-position: center;
}

.four-column-module.column .post-details {
    flex: 1;
    padding: 0 0 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    max-width: 600px;
}

.four-column-module.column .post-details h3.medium-heading {
    font-size: 28px;
    line-height: 36px;
}

/* Post card base styles */
.four-column-module .post-card {
    overflow: hidden;
}

/* Image link styles */
.four-column-module .post-image-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.four-column-module .post-image {
    height: 165px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.four-column-module .post-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: #F0B323;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.four-column-module .post-card:hover .image-overlay {
    transform: translateY(0);
}

/* Category link styles */
.four-column-module .category-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.four-column-module .category-link:hover .x-small-heading {
    text-decoration: underline;
}

/* Title link styles */
.four-column-module .title-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.four-column-module .title-link:hover h3.medium-heading {
    text-decoration: underline;
}

.four-column-module .post-details {
    padding: 17px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.four-column-module .module-button {
    margin-top: 40px;
}

.four-column-module .btn.secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.four-column-module .news-featured-see-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid #742f8a;
    color: #742f8a;
    text-decoration: none;
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.four-column-module .news-featured-see-more:hover {
    background: #742f8a;
    color: #fff;
}

.four-column-module .news-featured-see-more svg {
    width: 20px;
    height: 20px;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .four-column-module {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .four-column-module .huge-heading {
        font-size: 38px;
        line-height: 42px;
    }

    .four-column-module .four-column-header .button-wrap {
        display: none;
    }

    .four-column-module .button-wrap.mobile {
        display: block !important;
        padding: 40px 18px 0 18px;
        width: 100%;
    }

    .four-column-module .button-wrap.mobile .news-featured-see-more {
        width: 100%;
        justify-content: center;
    }

    .four-column-module .posts-wrapper {
        grid-template-columns: repeat(1,1fr) !important;
    }

    .four-column-module .post-card {
        display: flex !important;
        flex-direction: row-reverse;
        align-items: flex-start;
        gap: 16px;
    }

    .four-column-module .post-image-link {
        flex-shrink: 0;
    }

    .four-column-module .post-card .post-image {
        width: 150px;
        height: 100px;
    }

    .four-column-module .post-card .post-details {
        flex: 1;
        padding: 0 16px 0 0;
    }

    .four-column-module .post-card .post-details h3 {
        font-size: 18px;
        line-height: 1.3;
    }

    /* Column layout mobile adjustments */
    .four-column-module.column .post-card {
        flex-direction: row-reverse;
    }

    .four-column-module.column .post-image {
        width: 150px;
        height: 100px;
    }

    .four-column-module.column .post-details {
        padding: 0 16px 0 0;
    }

    .four-column-module.column .post-card .post-details h3 {
        font-size: 18px;
        line-height: 1.3;
    }
}

/* Events Listing Module */
.event-listing-module {
    background: #F6F1E8;
    padding: 55px 0 72px 0;
    margin-bottom: 64px;
  }
  
  .event-listing-module .event-listing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
  }
  
  .event-listing-module .event-module-title {
    font-family: neuzeit-grotesk, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #5D5C69;
    margin: 0;
  }
  
  .event-listing-module .all-events-link {
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #742f8a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  
  .event-listing-module .event-items {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .event-listing-module .event-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 300px;
  }
  
  .event-listing-module .event-date {
    text-align: center;
  }
  
  .event-listing-module .event-date .month {
    display: block;
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #742f8a;
    text-transform: uppercase;
  }
  
  .event-listing-module .event-date .day {
    display: block;
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 900;
    font-size: 57px;
    line-height: 57px;
    color: #742f8a;
  }
  
  .event-listing-module .event-title {
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 8px;
    color: #3C1951;
  }
  .event-listing-module .event-title:hover {
    text-decoration: underline;
    color: #3C1951;
  }

  .event-listing-module .event-title:hover a {
    color: #3C1951;
  }

  .event-listing-module .event-meta {
    font-family: neuzeit-grotesk, sans-serif;
    font-size: 16px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
  }
  
  @media (max-width: 768px) {
    .event-listing-module  .event-items {
      flex-direction: column;
      gap: 30px;
    }
  
    .event-listing-module .event-item {
      max-width: 100%;
    }
  }
  
  /* Video Listing Module */
  .video-listing-module {
    padding: 64px 0;
    background: #F6F1E8;
    margin-bottom: 64px;
  }
  
  .video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  h3.section-heading.medium-heading {
    margin-bottom: 30px;
    color: #5D5C69;
  }
  
  .video-card {
    cursor: pointer;

  }
  
  .video-card:hover {
  }
  
  .video-thumb {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }
  
  .play-icon {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #F0B323;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .video-info {
    margin-top: 12px;
  }
  
  .video-info .x-small-heading {
    font-size: 14px;
    color: #742f8a;
    margin-bottom: 6px;
    display: block;
  }
  .video-card:hover .video-info .medium-heading {
    text-decoration: underline;
  }
  .video-info .medium-heading {
    font-size: 18px;
    line-height: 1.4;
    color: #3C1951;
  }
  
  /* Lightbox Styling */
  .video-lightbox-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  
  .video-lightbox-overlay.active {
    display: flex;
  }
  
  .video-lightbox-content {
    position: relative;
    width: 100%;
    max-width: 960px;
    aspect-ratio: 16 / 9;
  }
  
  .video-iframe-wrapper {
    width: 100%;
    height: 100%;
  }
  
  .video-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .lightbox-close {
    position: absolute;
    top: -60px;
    right: -30px;
    font-size: 32px;
    color: #fff;
    background: #742F8A;
    border: none;
    cursor: pointer;
  }
  
  
  /* Responsive */
  @media (max-width: 1024px) {
    .video-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .video-listing-module {
        padding: 40px 0;
    }
    .video-listing-module .container {
        padding-left: 24px;
        padding-right: 24px;
    }
    h3.section-heading.medium-heading {
        margin-bottom: 40px;
    }
    .video-grid {
      grid-template-columns: 1fr;
    }
    .video-grid .video-card {
        display: flex;
        flex-direction: row;
    }
    .video-grid .video-card .video-thumb {
        width: 115px;
        height: 115px;
        flex: 0 0 33%;
        padding: 0;
    }
    .video-info {
        max-width: 210px;
        padding-left: 16px;
        margin-top: 0;
    }
    .video-info .medium-heading {
      font-size: 20px;
    }
  }
  
  .overview-media-listing {
    padding-bottom: 80px;
  }
  /* === Media Listing Module === */

.overview-media-listing {
    
  }
  
  /* === Featured Media Overlap Section === */
  .featured-media-overlap-wrapper {
    position: relative;
    padding: 64px 0;
    overflow: hidden;
  }
  
  .featured-media-inner {
    background: #F6F1E8;
    padding: 40px;
    margin-left: auto;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
  }
  .featured-media-content {
    max-width: 500px;
  }
  .featured-media-content h3.medium-heading {
    margin-bottom: 16px;
    font-family: Georgia, 'Times New Roman', Times, serif, sans-serif;
    font-size: 28px;
    font-weight: 400;
  }
  
  .featured-media-content p.article {
    font-size: 20px;
    line-height: 28px;
    color: #5D5C69;
    margin: 0 0 24px 0;
  }
  .featured-media-content a.media-featured-link {
    font-weight: 700;
    font-size: 16px;
    font-family: neuzeit-grotesk, sans-serif;
  }
  .featured-media-image-absolute {
    position: absolute;
    left: 24%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    box-shadow: 4px 4px 24px 0 rgba(0, 0, 0, 0.1);
  }

  @media (max-width: 1700px) {
    .featured-media-image-absolute {
        left: 18%;
    }
  }

  @media (max-width: 1440px) {
    .featured-media-image-absolute {
        left: 12%;
    }
  }
  
  .featured-media-image-absolute img {
    width: 380px;
    height: auto;
    display: block;
  }
  
  /* === Media List Section === */
  .media-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 60px;
  }
  
  .media-item {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  
  .media-thumbnail img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    flex-shrink: 0;
  }
  
  .media-details {
    flex: 1;
  }
  
  .media-details h4.medium-heading {
    margin: 0 0 4px;
    font-family: neuzeit-grotesk, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #3C1951;
  }
  
  .media-details p.small-body {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.6);
  }
  
  .media-details .media-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
  }
  .media-item-link:hover .media-details h4.medium-heading {
    text-decoration: underline;
  }
  
  .media-details .media-link svg {
    color: #742fba;
    transition: transform 0.3s ease;
  }
  
  .media-details .media-link:hover svg {
    transform: translateX(4px);
  }
  
  /* === Responsive Styles === */
  @media (max-width: 1024px) {
    .featured-media-inner {
      max-width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .overview-media-listing .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .overview-media-listing h2 {
        font-size: 38px;
        line-height: 42px;
    }
    .featured-media-overlap-wrapper {
      padding: 60px 0;
      display: flex;
      flex-direction: column-reverse;
    }
    .featured-media-overlap-wrapper .container {
        margin-top: -100px;
    }

    .featured-media-inner {
        padding: 140px 16px 24px 16px;
        margin: 0;
    }
  
    .featured-media-image-absolute {
      position: relative;
      transform: none;
      margin-bottom: 30px;
      text-align: center;
      left: 0;
      top: 0;
    }
  
    .featured-media-image-absolute img {
      width: 100%;
      max-width: 340px;
      margin: 0 auto;
    }
  
    .media-item {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .media-item-link {
        display: block;
        text-decoration: none;
        color: inherit;
      }
      
      
      .media-item {
        display: flex;
        flex-direction: row;
        gap: 20px;
        align-items: flex-start;
        padding: 0;
        height: 100%;
      }
      .media-details {
        text-align: left;
      }
      
      .media-thumbnail img {
        border: 1px solid #e0e0e0;
      }
      .media-list {
       margin-top: 0;
      }
  
  }
  
  @media (max-width: 480px) {
    .featured-media-inner {
      
    }
  
    .media-list {
      gap: 24px;
    }
  }
  
  /* Mosaic Images */
  .mosaic-images-module {
    padding: 0 0 64px 0;
  }
  
  .mosaic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 480px;
    gap: 20px;
    margin-top: 24px;
  }
  .mosaic-grid p.large-body {
    margin-bottom: 40px;
  }
  .mosaic-tile {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  
  .tile-image {
    flex-grow: 1;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
  }
  
  /* Layout based on row-column spans */
  .tile-1 { grid-column: span 3; }
  .tile-2 { grid-column: span 1; }
  .tile-3 { grid-column: span 2; }
  .tile-4 { grid-column: span 2; }
  .tile-5 { grid-column: span 1; }
  .tile-6 { grid-column: span 3; }
  
  .tile-caption {
    margin-top: 8px;
    font-weight: 400;
    text-align: left;
    color: #5D5C69;
  }
  
  /* Mobile adjustments */
  @media (max-width: 768px) {
    .mosaic-images-module h2 {
        font-size: 38px;
        line-height: 42px;
      }
    .mosaic-grid {
      grid-template-columns: repeat(1, 1fr);
      grid-auto-rows: 250px;
    }
  
    .tile-1, .tile-6 { grid-column: span 2; }
    .tile-2, .tile-3, .tile-4, .tile-5 { grid-column: span 2; }
  }
  
  /* Collection Embedded Video Module */
.collection-embedded-video {
    padding: 64px 0;
    background-color: #F6F1E8;
  }
  
  .collection-embedded-video .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .collection-embedded-video .video-wrapper {
    margin: 0 auto;
    overflow: hidden;
  }
  
  .collection-embedded-video .video-embed {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 58.25%; 
    overflow: hidden;
  }
  
  .collection-embedded-video .video-embed iframe,
  .collection-embedded-video .video-embed video,
  .collection-embedded-video .video-embed embed,
  .collection-embedded-video .video-embed object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .collection-embedded-video .video-caption {
    padding: 16px 0;
  }
  
  .collection-embedded-video .video-caption p {
    text-align: left;
    font-weight: 700;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .collection-embedded-video {
      padding: 40px 0;
    }
    
    .collection-embedded-video .container {
      padding: 0 15px;
    }
    
    .collection-embedded-video .video-caption {
      padding: 15px 20px;
    }
    
    .collection-embedded-video .video-caption p {
      font-size: 14px;
      line-height: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .collection-embedded-video {
      padding: 30px 0;
    }
    
    .collection-embedded-video .video-wrapper {
      
    }
  }