﻿:root {
    --nmo-teal:           #007B8F;
    --nmo-bg-soft:        #e9f1f2;
    --nmo-border:         #99ccc8;
    --nmo-text:           #404040;
    --nmo-pink:           #f2cbd5;
    --nmo-yellow:         #f1efb3;
    --nmo-purple:         #C7B8E5;
    --nmo-pagination-btn: #9bc5cc;
    --nmo-bg:             #354e57;
    --nmo-white:          #ffffff;
    --nmo-accent:         #a8dadc;
    --nmo-spacing-unit:   8px;
}
.nmo-activities-section {
}
.nmo-activities-container {
    max-width: 100%;
    width: 100%;
    padding: 0;
}
.nmo-header {
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid var(--nmo-border);
}
.nmo-filter-nav {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    padding: 20px;
}
.nmo-filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    flex-grow: 1;
    width: 100%;
    align-items: stretch;
}
.nmo-filter-list .nmo-filter-btn:first-child {
    width: 80px;
}
#nmoToggleFilters ~ .nmo-filter-btn {
    display: none;
}
#nmoFilterList.is-expanded #nmoToggleFilters ~ .nmo-filter-btn {
    display: inline-flex;
}
.nmo-filter-btn {
    background: var(--nmo-bg-soft);
    display: inline-flex;
    width: calc(20% - 51px);
    min-height: 75px;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 10px 26px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    color: var(--nmo-text);
    text-align: center;
    line-height: 1;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}
.nmo-filter-more:hover,
.nmo-filter-btn:not(.nmo-filter-btn--active):hover {
    background-color: #74C2BE;
    color: #fff;
}
.nmo-filter-more ~ .nmo-filter-btn {
	flex: 1 1 230px;
}
.nmo-filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--nmo-teal);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.nmo-filter-btn--active {
    background: var(--nmo-teal);
    color: #ffffff;
    padding: 0;
    flex-shrink: 0;
}
.nmo-filter-more {
    background: var(--nmo-bg-soft);
    border: none;
    width: 75px;
    height: 75px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #404040;
    cursor: pointer;
    flex-shrink: 0;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}
.nmo-filter-more path {
    transition: all 0.3s ease;
}
.nmo-filter-more svg {
    transition: transform 0.3s ease;
}
#nmoToggleFilters[aria-expanded="true"] svg {
    transform: rotate(180deg);
}
.nmo-filter-btn:focus-visible,
.nmo-filter-more:focus-visible {
    outline: 3px solid var(--nmo-teal);
    outline-offset: 2px;
}
.nmo-content-expand {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transition:
        max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        opacity    0.4s ease,
        padding    0.4s ease;
    background-color: #ffffff;
    border-top: 1px solid #99ccc8;
    width: 100%;
}
.nmo-content-expand.is-open {
    max-height: 800px;
    opacity: 1;
    visibility: visible;
    padding: 60px 0;
}
.nmo-content-expand__inner {
    margin: 0 auto;
    padding: 0 40px;
}
.nmo-content-text {
    font-size: 26px;
    line-height: 1.6;
    color: #000000;
    text-align: start;
    margin: 0 0 20px 0;
    font-weight: 300;
    transition: opacity 0.3s ease;
}
.nmo-content-footer {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}
.nmo-read-more {
    background-color: #99ccc8;
    color: #1a1a1a;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition:
        background-color 0.2s ease,
        transform        0.2s ease,
        opacity          0.3s ease;
}
.nmo-read-more:hover {
    background-color: #81b1ad;
}
.nmo-read-more svg {
    transform: rotate(90deg);
}
.nmo-read-more:focus-visible {
    outline: 3px solid #007d8c;
    outline-offset: 4px;
}
.nmo-activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    grid-auto-flow: dense;
    gap: 0;
    width: 100%;
}
.nmo-card {
    background: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin: -1px;
    border: 1px #99ccc8 solid;
    height: auto;
    transition: opacity 0.4s ease, transform 0.4s ease;
    text-decoration: none;
    color: inherit;
}
.post-type-archive-publication .nmo-card {
	min-height: 26vw;
}
.nmo-card__image-box {
    width: 100%;
    aspect-ratio: 300/200;
    overflow: hidden;
}
.nmo-card__image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.nmo-card:hover .nmo-card__image-box img {
    transform: scale(1.05);
}
.nmo-card__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: initial;
	text-align: center;
}
.nmo-card__body--center {
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}
.nmo-card__title1 {
	font-size: 16px;
	line-height: 1.25;
}
.nmo-card__title {
    font-size: clamp(18px, 1.7vw, 24px);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 12px 0;
    display: flex;
    justify-content: center;
}
.nmo-card__super-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}
.nmo-card__meta {
    margin-top: 10px;
    display: flex;
    gap: 8px;
    overflow: hidden;
    justify-content: center;
    flex-wrap: wrap;
}
.nmo-card__overlay {
	background: #EBF1F2;
	position: absolute;
	inset: 0 0 1px 1px;
	z-index: 20;
	padding: 25px;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	text-align: start;
	opacity: 0;
	visibility: hidden;
	transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.nmo-card:hover .nmo-card__overlay,
.nmo-card:focus-within .nmo-card__overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nmo-card__overlay-title {
    font-size: clamp(18px, 1.7vw, 24px);
    font-weight: 800;
    line-height: 1.2;
}
.nmo-card__description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 300;
    margin: 6px 0;
}
.nmo-card__enter-btn {
    margin-top: auto;
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background-color: rgba(255, 255, 255, 0.75);
    color: #404040;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
    margin-top: 0;
}
[dir="rtl"] .nmo-card__enter-btn svg,
[dir="ltr"] .nmo-card__enter-btn svg {
    transition: transform 0.2s;
}
[dir="ltr"] .nmo-card__enter-btn svg {
    transform: rotate(180deg);
}
[dir="rtl"] .nmo-card__enter-btn:hover svg {
    transform: translateX(-3px);
}
[dir="ltr"] .nmo-card__enter-btn:hover svg {
    transform: translateX(3px) rotate(180deg);
}
.nmo-card--featured {
    position: relative;
    overflow: hidden;
    height: 100%;
}
.nmo-card--featured .nmo-card__image-box {
    aspect-ratio: auto;
    height: 100%;
}
.nmo-card--featured .nmo-card__overlay {
    position: absolute;
    bottom: 0;
    inset-inline-end: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 40px 60px;
    text-align: start;
}
.nmo-card--featured .nmo-card__overlay-title {
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 800;
    line-height: 1.2;
}
.nmo-card--featured .nmo-card__title {
    font-size: clamp(24px, 4vw, 32px);
    line-height: 1.1;
    margin-bottom: 20px;
    -webkit-line-clamp: 3;
    max-width: 90%;
    margin-inline: auto;
}
.nmo-card--featured .nmo-card__super-title {
    font-size: 32px;
    margin-bottom: 12px;
	line-height: 0.9;
}
.nmo-card--featured .nmo-card__description {
    font-size: 26px;
    line-height: 1.6;
    margin-bottom: 25px;
}
.nmo-card--featured .nmo-card__body {
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    background-color: var(--nmo-purple);
    padding: 32px;
    z-index: 5;
}
.nmo-card--featured .nmo-card__image-box:hover .nmo-card__body {
    background-color: rgba(195, 177, 225, 0.98);
}
.nmo-card__hover-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}
.nmo-card--featured .nmo-card__image-box:hover .nmo-card__hover-content {
    max-height: 300px;
    opacity: 1;
    margin: 15px 0;
}
.nmo-card--text-only {
    background-color: #EBF1F2;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nmo-card--text-only .nmo-card__title {
    font-size: clamp(20px, 2vw, 24px);
    margin-bottom: 0;
    max-width: 280px;
}
.nmo-card--text-only .nmo-card__super-title {
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    font-size: 16px;
}
.nmo-card__body--center {
    text-align: center;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    text-decoration: none;
}
.nmo-tag {
    background: var(--nmo-bg-soft);
    color: #404040;
    font-size: 16px;
    padding: 4px 8px;
    border-radius: 2px;
	line-height: 1.2;
	text-align: center;
}
.nmo-tag--white {
    background: #E6F2F2;
}
.nmo-tag,
.nmo-tag--white {
    transition: .3s all;
}
.nmo-tag:hover,
.nmo-tag--white:hover {
    background: #007B8F;
    border-color: #007B8F;
    color: #fff;
}
.nmo-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}
.nmo-page-btn {
    background-color: var(--nmo-pagination-btn);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s;
}

/* ─── Page numbers (תוספת) ────────────────────────────────── */
.pager-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pager-page {
    background-color: transparent;
    border: none;
    min-width: 40px;
    height: 40px;
    padding: 0 4px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbbbbb;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: opacity 0.2s, background-color 0.2s, color 0.2s;
}

.pager-page:hover {
    opacity: 0.8;
}

.pager-page.is-current {
    background-color: var(--nmo-pagination-btn);
    color: #ffffff;
    cursor: default;
}

.pager-ellipsis {
    width: 16px;
    text-align: center;
    color: #bbbbbb;
    font-weight: 700;
    font-size: 18px;
    user-select: none;
}

.nmo-page-btn:hover {
    opacity: 0.8;
}
.nmo-page-counter {
    color: #bbbbbb;
    font-weight: 700;
    font-size: 18px;
}
.nmo-fade-in {
    animation: nmoCardAppear 0.5s forwards;
}
@keyframes nmoCardAppear {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.nmo-activities-grid .nmo-card {
    display: none;
}
.nmo-activities-grid .nmo-card.is-visible {
    display: inline-flex;
}
.nmo-loader {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
	visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.nmo-loader.is-active {
    opacity: 1;
	visibility: visible;
    pointer-events: all;
}
.nmo-loader__spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top-color: #354e57;
    border-radius: 50%;
    animation: nmo-spin 0.7s linear infinite;
}
@keyframes nmo-spin {
    to { transform: rotate(360deg); }
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.nmo-post-header {
    position: relative;
    width: 100%;
    min-height: clamp(300px, 30vw, 565px);
    background-color: var(--nmo-bg, #354e57);
    display: flex;
    /* align-items: flex-start; */
    overflow: hidden;
    justify-content: flex-end;
    padding: 0;
}
.nmo-post-header__content {
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    flex-flow: row-reverse;
}
.nmo-post-header__title {
    color: var(--nmo-white, #ffffff);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    width: 350px;
    padding: 32px;
    flex-shrink: 0;
}
.nmo-post-header__metadata {
    color: var(--nmo-white, #ffffff);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    opacity: 0.9;
}
.nmo-post-header__field {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nmo-post-header__thumbnail-wrap {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}
.nmo-post-header__thumbnail {
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    object-fit: cover;
    /*object-fit: fill;*/
}
.nmo-post-header__thumbnail-curtain {
    position: absolute;
    inset: 0;
    background-color: var(--nmo-bg, #354e57);
    z-index: 1;
    transform-origin: right center;
    animation: curtain-reveal 0.9s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    animation-delay: 0.2s;
}
@keyframes curtain-reveal {
    0%   { transform: scaleX(1); }
    100% { transform: scaleX(0); }
}
.nmo-post-intro {
    margin: 0 auto !important;
    padding: 50px 20px;
    text-align: center;
}
.nmo-post-intro__headline {
    max-width: 950px;
    color: #00848a;
    font-size: 80px;
    font-weight: 700;
    margin: 0 auto 32px;
    line-height: 1.1;
}
.nmo-post-intro__body {
    color: #404040;
    font-size: 32px;
    line-height: 1.3;
    margin: 0 auto 48px auto;
    max-width: 851px;
    font-weight: 500;
}
.nmo-post-intro__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.nmo-post-intro__author-info {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
}
.nmo-post-intro__date {
    font-weight: 400;
    margin-inline-start: 12px;
    color: #666666;
    font-size: 20px;
}
.nmo-post-intro__tags {
    display: flex;
    gap: 8px;
    justify-content: center;
}
.nmo-post-intro__tag {
    background-color: #E6F2F2;
    color: #404040;
    padding: 3px 15px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 400;
}
.nmo-post-intro__tag:hover {
    background-color: #d1e5e7;
}
.nmo-post-body {
    max-width: 950px;
    margin: 0 auto;
    /*padding: 40px 20px;*/
    padding: 0px 20px;
    color: #333333;
    line-height: 1.6;
    text-align: start;
}
.nmo-post-body__h3 {
    color: #007680;
    font-size: clamp(24px, 4vw + 1rem, 48px);
    font-weight: 700;
    margin: 48px 0 12px 0;
}
.nmo-post-body__p {
    font-size: clamp(18px, 1.2vw + 1rem, 26px);
    margin-bottom: clamp(16px, 3vh, 24px);
    font-weight: 400;
    color: #404040;
}
.nmo-post-body__p div {
    max-width: 100% !important;
}
.nmo-post-body__figure {
    display: flex;
    flex-direction: column;
    margin: 80px 0;
    width: 100%;
    gap: 20px;
}
.nmo-post-body__image-wrapper {
    flex: 0 0 auto;
    max-width: 100%;
    overflow: hidden;
}
.nmo-post-body__image {
    display: block;
    height: auto;
    object-fit: cover;
    border: 1px #E6F2F2 solid;
    max-width: 625px;
}
.nmo-post-body__caption {
    flex: 1;
    font-size: 20px;
    line-height: 1.4;
    color: #404040;
    font-weight: 800;
    padding-block-start: 16px;
    border-block-start: 2px solid #E6F2F2;
}
.nmo-post-body__caption-credit {
    display: block;
    font-size: 20px;
    color: #404040;
    margin-top: 8px;
    font-weight: 400;
}
.nmo-post-body__quote {
    margin-block: clamp(40px, 8vh, 100px);
    margin-inline: 0;
    padding-inline: clamp(20px, 10%, 70px);
    border-inline-start: 2px solid #74C2BE;
}
.nmo-post-body__quote-text {
    font-size: clamp(20px, 4vw, 37px);
    line-height: 1.3;
    color: #5F2866;
    font-weight: 700;
}
.nmo-post-body__sidebar {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 48px 0;
    border: 2px solid #74C2BE;
    background-color: #ffffff;
    overflow: hidden;
}
.nmo-post-body__sidebar-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.nmo-post-body__sidebar-content {
    flex: 1;
    background-color: #eaf6f7;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.nmo-post-body__sidebar-label {
    color: #5F2866;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}
.nmo-post-body__sidebar-title {
    color: #404040;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}
.nmo-post-body__sidebar-text {
    color: #404040;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 24px;
    font-weight: 400;
    max-width: 288px;
    margin-top: 0;
}
.nmo-post-body__sidebar-link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    background-color: #ffffff;
    color: #333333;
    padding: 6px 13px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
}
.nmo-post-body__sidebar-link svg {
    margin-inline-start: 10px;
    font-weight: 400;
    color: #007680;
}
.nmo-accordion {
    width: 100%;
    margin: 40px auto;
    border-bottom: 2px solid #74C2BE;
    border-top: 2px solid #74C2BE;
}
.nmo-accordion__summary {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    background-color: #ffffff;
    list-style: none;
    transition: background-color 0.3s ease;
    max-width: 1200px;
    margin: 0 auto;
}
.nmo-accordion__summary::-webkit-details-marker {
    display: none;
}
.nmo-accordion__summary:hover {
    background-color: #f5fbfc;
}
.nmo-accordion__title {
    font-size: 32px;
    font-weight: 800;
    color: #404040;
    margin-inline-start: 16px;
    order: 1;
}
.nmo-accordion__icon {
    width: 32px;
    height: 32px;
    background-color: #eaf6f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
details[open] .nmo-accordion__icon {
    transform: rotate(180deg);
}
details[open] {
    border-bottom: 0;
    margin-bottom: auto;
}
.nmo-accordion__content {
    padding: 24px 20px;
    background-color: #ffffff;
    font-size: 19px;
    line-height: 1.6;
    animation: slideDown 0.4s ease-out;
    max-width: 950px;
    margin: 0 auto;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.nmo-explore {
    margin: 80px auto 0;
    padding: 0;
}
.nmo-explore__header {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: #333;
    border-top: 2px solid #74C2BE;
    border-bottom: 2px solid #74C2BE;
    padding: 19px;
}
.nmo-explore__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 16px #007B8F solid;
}
.nmo-explore__card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
    border-inline-start: 2px solid #74C2BE;
    padding-bottom: 20px;
}
.nmo-explore__card:nth-child(4n) {
    border-inline-end: none;
}
.nmo-explore__image-container {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    margin-bottom: 16px;
}
.nmo-explore__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.nmo-explore__image:hover {
    transform: scale(1.05);
}
.nmo-explore__meta {
    font-size: 16px;
    color: #404040;
    margin-bottom: 8px;
    line-height: 1.3;
    font-weight: 500;
    text-align: center;
}
.nmo-explore__title {
    font-size: 24px;
    font-weight: 800;
    color: #404040;
    margin-bottom: 24px;
    line-height: 1.2;
    text-align: center;
    padding: 0 20px;
}
.nmo-explore__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
    justify-content: center;
}
.nmo-post-body-lyrics {
    max-width: 950px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #333333;
    line-height: 1.6;
}
.nmo-post-body-lyrics__header {
    margin-bottom: 1.75rem;
    text-align: start;
}
.nmo-post-body-lyrics__title {
    color: #007680;
    font-size: clamp(24px, 4vw + 1rem, 48px);
    font-weight: 700;
    margin: 0;
}
.nmo-post-body-lyrics__subtitle {
    font-size: clamp(20px, 1.3vw + 1rem, 28px);
    color: #404040;
    margin: 0;
}
.nmo-post-body-lyrics__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}
.nmo-post-body-lyrics__col {
    font-size: clamp(18px, 1.2vw + 1rem, 22px);
    font-weight: 400;
    color: #404040;
    line-height: 2;
}
.nmo-post-logo-wrapper {
    display: flex;
    justify-content: center;
    margin: clamp(40px, 5vw, 50px) 0 clamp(5px, 5vw, 5px) 0;
    width: 100%;
}
.nmo-post-logo {
    height: auto;
    transition: transform 0.3s ease;
}
.nmo-post-logo-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}
.nmo-post-logo:hover {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .nmo-post-body__figure {
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
    }
    .nmo-post-body__caption {
        position: sticky;
        top: 20px;
        margin-inline: 20px;
        border-block-start: 2px solid #E6F2F2;
        padding: 20px 0;
        max-width: 230px;
    }
    .nmo-post-body__sidebar {
        flex-direction: row-reverse;
        height: 335px;
    }
    .nmo-post-body__sidebar-image {
        width: 56%;
        height: 100%;
    }
    .nmo-post-body__sidebar-content {
        width: 45%;
    }
}
@media (min-width: 1024px) {
    .nmo-activities-grid {
        border-inline-end: 0;
    }
    .nmo-card--featured {
        grid-column: span 2;
        grid-row: span 2;
        border-inline-end: 0;
    }
    .nmo-explore__grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .nmo-explore__card:nth-child(4n) {
        border-inline-end: none;
    }
}
@media (max-width: 1440px) {
	.nmo-filter-btn {
		width: calc(25% - 59px);
	}
	.nmo-filter-more ~ .nmo-filter-btn {
		flex: 1 1 180px;
	}
}
@media (max-width: 1200px) {
	.nmo-filter-btn {
		width: calc(33.333% - 68px);
		min-height: 60px;
	}
    .nmo-filter-more {
        width: 60px;
        height: 60px;
    }
	.nmo-filter-more ~ .nmo-filter-btn {
		flex: 1 1 150px;
	}
	.nmo-activities-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.nmo-post-header__title {
		width: 300px;
	}
}
@media (max-width: 991px) {
    .nmo-filter-nav {
        padding: 15px 0;
        gap: 0;
    }
    .nmo-filter-list {
        display: block;
        white-space: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 16px;
        font-size: 0;
    }
    .nmo-filter-list::-webkit-scrollbar {
        display: none;
    }
    .nmo-filter-list .nmo-filter-btn {
        width: auto;
        min-width: 120px;
        min-height: 40px;
        font-size: 14px;
        white-space: nowrap;
        margin: 0 0 0 8px;
    }
    .nmo-filter-list .nmo-filter-btn:first-child {
        min-width: 55px;
        width: auto;
    }
    #nmoToggleFilters ~ .nmo-filter-btn {
        display: inline-flex;
    }
    #nmoToggleFilters {
        display: none;
    }
    .nmo-post-intro__headline {
        font-size: 50px;
    }
    .nmo-post-logo {
        max-width: 100px;
    }
    .nmo-post-logo-wrapper {
        margin: 1.5rem 0;
    }
    .nmo-explore__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .nmo-explore__card:nth-child(4n) {
        border-inline-end: 2px solid #74C2BE;
    }
    .nmo-explore__card:nth-child(2n) {
        border-inline-end: none;
    }
	.nmo-activities-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.nmo-post-header {
		min-height: 1px;
	}
	.nmo-post-header__thumbnail-wrap {
		height: 32vw;
	}
	.nmo-post-header__content {
		flex-direction: column-reverse;
	}
	.nmo-post-header__title {
		width: 100%;
	}
}
@media (max-width: 767px) {
    .nmo-activities-grid {
        grid-auto-rows: auto;
        gap: 0;
        border: none;
    }
    .nmo-activities-grid > *:first-child {
        grid-column: 1 / -1 !important;
    }
    .nmo-card--featured {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        min-height: 350px;
    }
    .nmo-card--featured .nmo-card__body {
        position: relative;
        padding: 16px;
    }
    .nmo-card__image-box {
        aspect-ratio: 16 / 9;
        height: auto;
    }
    .nmo-card__title {
        font-size: 18px;
    }
	.nmo-card__overlay-title {
		font-size: 16px;
	}
    .nmo-card--featured .nmo-card__title {
        font-size: 24px;
    }
    .nmo-card--text-only {
		width: 100%;
        min-height: 200px;
    }
    .nmo-card__body--center {
        padding: 30px 20px;
    }
    .nmo-card__meta {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
        padding-bottom: 20px;
    }
    .nmo-card__overlay {
        padding: 20px;
    }
    .nmo-card:active .nmo-card__overlay {
        opacity: 1;
        visibility: visible;
    }
    .nmo-card--featured .nmo-card__overlay {
        padding: 40px;
    }
    .nmo-content-expand.is-open {
        padding: 40px 0;
    }
    .nmo-content-expand__inner {
        padding: 0 20px;
    }
    .nmo-content-text {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 24px;
    }
    .nmo-read-more {
        width: 100%;
        justify-content: center;
        padding: 16px;
    }
	.nmo-card--featured .nmo-card__overlay-title {
		font-size: 32px;
		line-height: 0.9;
	}
	.nmo-card--featured .nmo-card__description {
		font-size: 20px;
		line-height: 1.4;
	}
	.nmo-card__overlay-title {
        font-size: 24px;
    }
	.nmo-card__description {
		font-size: 18px;
		line-height: 1.4;
	}
   .nmo-post-header__thumbnail-wrap {
        height: 54vw;
    }
}
@media (max-width: 640px) {
    .nmo-post-body-lyrics__columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
@media (max-width: 600px) {
   .nmo-post-header__thumbnail-wrap {
        height: 64vw;
    }
    .nmo-post-header__title {
        font-size: 22px;
        padding: 24px;
    }
    .nmo-post-header__metadata {
        font-size: 16px;
    }
    .nmo-post-header__content {
        flex-flow: column;
        flex-direction: column-reverse;
    }
    .nmo-post-intro {
        padding: 40px 15px;
    }
    .nmo-post-intro__headline {
        font-size: 32px;
        margin-bottom: 24px;
    }
    .nmo-post-intro__body {
        font-size: 18px;
    }
    .nmo-post-body__quote {
        border-inline-start-width: 3px;
        margin-block: 30px;
    }
    .nmo-accordion__title {
        font-size: 20px;
    }
    .nmo-explore__grid {
        grid-template-columns: 1fr;
    }
    .nmo-explore__card {
        border-inline-end: none;
        border-bottom: 2px solid #74C2BE;
    }
}
/* ── Related Items Section ──────────────────────────────── */
.nmo-related-section {
    width: 100%;
    background: #fff;
    border-top: 2px solid var(--nmo-border);
}
.nmo-related-title {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 700;
    text-align: center;
    padding: 14px 20px;
    margin: 0;
    color: var(--nmo-text);
}
.nmo-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--nmo-border);
    border-bottom: 1px solid var(--nmo-border);
}
.nmo-related-card {
    border: none;
    border-inline-end: 1px solid var(--nmo-border);
    margin: 0;
}
.nmo-related-card:last-child {
    border-inline-end: none;
}
.nmo-related-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--nmo-teal);
    color: #fff;
    padding: 20px 40px;
    gap: 20px;
}
.nmo-related-footer__text {
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 600;
    margin: 0;
}
.nmo-related-footer__link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.nmo-related-footer__link:hover {
    opacity: 0.8;
}
@media (max-width: 960px) {
    .nmo-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .nmo-related-card:nth-child(2) {
        border-inline-end: none;
    }
    .nmo-related-card:nth-child(n+3) {
        border-top: 1px solid var(--nmo-border);
    }
}
@media (max-width: 600px) {
    .nmo-related-grid {
        grid-template-columns: 1fr;
    }
    .nmo-related-card {
        border-inline-end: none;
        border-bottom: 1px solid var(--nmo-border);
    }
    .nmo-related-footer {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .nmo-filter-list,
    .nmo-card__image-box img {
        transition: none !important;
    }
}