.custom-accordion-title {
    cursor: pointer;
 font-family: 'BrennerSans';
font-style: normal;
font-weight: 700;
font-size: 30px;
line-height: 36px;
/* or 120% */
letter-spacing: 0.02em;
	transition: all 0.3s ease;
}

.custom-accordion-title:hover {
	color:#FDC42A;
}
.custom-accordion-title.active {
	color:#FDC42A;
}

.custom-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-family: 'DiurnalL';
font-style: normal;
font-weight: 500;
font-size: 24px;
line-height: 32px;

}

.custom-accordion-item {
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-top: 3px solid #134272;
}

.custom-accordion-item h3 {
    margin-top:25px;
    margin-bottom:45px;
}

.hidden-accordion {
    display: none;
}

.custom-accordion-button-text {
    font-style: normal;
font-weight: 700;
font-size: 21px;
line-height: 22px;
/* identical to box height, or 105% */
letter-spacing: 0.05em;
font-variant: all-small-caps;
}

.custom-accordion-load-more {
    background:#E1E1E1;
    padding: 15px 25px;
}

.custom-accordion-load-more-wrapper {
    display: flex;
    justify-content: center;
	margin-top:60px;
}

.custom-accordion-load-more {
    margin-top: 15px;
    padding: 10px 20px;
    cursor: pointer;
    background: #E1E1E1;
    color: white;
    border: none;
    border-radius: 0px;
    display: inline-block;
    fill: var(--e-global-color-primary);
    color: var(--e-global-color-primary);
}


.custom-accordion-e-load-more-spinner svg {
    animation: spin 1s linear infinite;
    height: 1em;
    width: 1em;
    vertical-align: middle;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.accordion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* ✅ Exactly 2 columns */
    gap: 12px;
}

@media (max-width: 768px) {
    .accordion-grid {
        grid-template-columns: 1fr; /* ✅ 1 column on small screens */
    }
}

