.nomodule .section-title {
    color: var(--bg-color-brass);
}
.nomodule .latest-posts {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}
.nomodule .latest-posts a {
    text-decoration: none;
}
.nomodule .latest-posts img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}
.nomodule .latest-posts h2 {
    margin-bottom: var(--spacing-xxxs);
}
.nomodule .main-post {
    flex: 1 1 100%;
    max-width: 1020px;
    margin-bottom: var(--spacing-xs);
}
.nomodule .main-post-img-wrapper {
    max-width: 100%;
    width: 1020px;
    height: 200px;
    border-radius: 8px;
    background-color: #d5dcef;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
.nomodule .main-post-img--fallback {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  top: 0;
  left: 0;
}
.nomodule .other-posts {
    flex: 1 1 529px;
    max-width: 529px;
}
.nomodule .other-posts-item a {
    display: flex;
    gap: var(--spacing-xs);
    align-items: center;
    margin-bottom: var(--spacing-md);
    flex-direction: column;
    max-width: 1020px;
}
.nomodule .other-posts-img-wrapper {
    max-width: 100%;
    width: 1020px;
    height: 125px;
    border-radius: 8px;
    background-color: #d5dcef;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
.nomodule .other-posts-img--fallback {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  top: 0;
  left: 0;
}
.nomodule .smallercap-text {
    margin-bottom: var(--spacing-xxxs);
}
.nomodule .date.smallercap-text {
    color: var(--bg-color-royal-purple);
    font-size: .55rem;
    font-family: var(--gdt-heading-font-family);
}
.nomodule .newsletter-box {
    background-color: var(--bg-color-plum);
    max-width: 666px;
    margin-left: auto;
    margin-right: auto;
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-xl);
    border-radius: 8px;
}
.nomodule .newsletter-box h2 {
    color: var(--bg-white);
    font-size: 1rem;
    margin-bottom: 0;
}
.nomodule .newsletter-box .mktoForm {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.nomodule .newsletter-box .mktoForm .mktoFormRow:not(:first-of-type) {
    display: none;
}
.nomodule .more-posts-sidebar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.nomodule .search-box {
    margin-bottom: 1rem;
}
.nomodule .more-posts-sidebar-wrapper .primary-content--recent_resources {
    justify-content: center;
}
.nomodule .more-posts-sidebar-wrapper img {
    object-fit: cover;
}
.nomodule #resource-type-filter,
.nomodule #product-filter {
    display: none;
    visibility: hidden;
}
.nomodule #resource-type-dropdown,
.nomodule #product-dropdown {
    display: block;
    visibility: visible;
}
.nomodule .more-posts {
    display: flex;
}
.nomodule .more-post-item {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--spacing-md);
}
.nomodule .more-post-item a {
    text-decoration: none;
    max-width: 250px;
}
.nomodule .more-posts-img-wrapper {
    max-width: 100%;
    width: 522px;
    height: 125px;
    border-radius: 8px;
    background-color: #d5dcef;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
.nomodule .more-posts-img--fallback {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  top: 0;
  left: 0;
}
.nomodule .more-post-item .content {
    min-width: 250px;
}
.nomodule .more-post-item h2 {
    margin-top: var(--spacing-xxxs);
    margin-bottom: var(--spacing-xxxs);
}
.nomodule .mobile-filter-dropdown {
    display: block;
    appearance: none;
    background-color: #fff;
    border: 2px solid #535383;
    border-radius: 5px;
    padding: 0.5rem 1.25rem;
    color: #535383;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}
.nomodule .mobile-filter-dropdown option {
    background-color: #fff;
    color: #333;
    font-size: 1rem;
    padding: 0.5rem;
}
.nomodule .no-posts-message {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
@media screen and (min-width: 481px) {
    .nomodule .newsletter-box .mktoForm {
        flex-direction: row;
        gap: 1rem;
    }
    .nomodule .newsletter-box .mktoForm .mktoFormRow:first-of-type {
        width: 100%;
        flex: 1 1 100%;
    }
    .nomodule .newsletter-box .mktoForm .mktoButtonRow {
        margin-top: var(--spacing-lg);
        flex: 1 1 100px;
    }        
}

@media screen and (min-width: 1024px) {
    .nomodule .latest-posts {
        flex-direction: row;
    }
    .nomodule .other-posts {
        margin-top: 12px;
    }
    .nomodule .other-posts-item a {
        flex-direction: row;
    }
    .nomodule .main-post {
        flex: 1 1 522px;
        max-width: 522px;
    }
    .nomodule .main-post-img-wrapper {
        height: 315px;
        margin-bottom: var(--spacing-md);
    }
    .nomodule .other-posts-img-wrapper {
        width: 120px;
        height: 90px;
        flex: 0 0 120px;
    }
    .nomodule .newsletter-box .mktoForm .mktoButton {
        padding: 0.6em .9em 0.6em !important;
    }
    .nomodule .more-posts-sidebar-wrapper .primary-content--recent_resources {
        justify-content: space-between;
    }
    .nomodule .more-post-item {
        flex: 0 0 33.33%;
        max-width: 33.33%;
        align-items: normal;
    }
    .nomodule .more-posts-img-wrapper {
        width: 225px;
        height: 136px;
        flex: 0 0 225px;
        margin-bottom: var(--spacing-md);
    }
    .nomodule .more-post-item img {
        width: 225px;
        height: 136px;
    }
    .nomodule .more-post-item img.is-square {
        object-fit: fill;
    }
    .nomodule .more-post-item h2 {
        max-width: 96%;
    }
}

@media screen and (min-width: 1126px) {
    .nomodule .other-posts {
        margin-top: 22px;
    }
    .nomodule .more-posts-sidebar-wrapper {
        display: flex;
        flex-direction: row;
    }
    .nomodule .more-posts-sidebar {
        flex: 0 0 300px;
        padding-top: 1rem;
        height: fit-content;
        position: sticky;
        top: 88px;
    }
    .nomodule #resource-type-dropdown,
    .nomodule #product-dropdown {
        display: none;
        visibility: hidden;
    }
    .nomodule #resource-type-filter,
    .nomodule #product-filter {
        display: block;
        visibility: visible;
    }
    .nomodule #resource-type-filter summary::-webkit-details-marker,
    .nomodule #product-filter summary::-webkit-details-marker {
        display: none;
    }
    .nomodule #resource-type-filter summary,
    .nomodule #product-filter summary {
        cursor: pointer;
        position: relative;
    }
    .nomodule #resource-type-filter summary::after,
    .nomodule #product-filter summary::after {
        content: "›";
        display: inline-block;
        margin-left: 0.25rem;
        transition: transform 0.2s ease;
    }
    .nomodule #resource-type-filter[open] summary::after,
    .nomodule #product-filter[open] summary::after {
        transform: rotate(90deg);
    }
    .nomodule .filter-list {
        display: block;
        margin-left: -36px;
        list-style: none;
    }
    .nomodule .filter-list li {
        margin-bottom: 0.35rem;
    }
    .nomodule .filter-list li a {
        color: #221F54;
        text-shadow: none;
        font-weight: 300;
        text-decoration: none;
        transition: .3s ease-in-out;
    }
    .nomodule .filter-list li a.active {
        font-weight: 500;
        text-decoration: underline;
    }
    .nomodule .no-posts-message {
        width: 1000px;
        height: 833px;
    }
}