body {
    font-family: 'Lexend Deca', sans-serif;
    background-color: white;
    color: #222222;
    margin: 0;
}
.text-orangecustom {
    color: #ED6D28;
}
.hover\:text-orangecustom:hover,
.focus\:text-orangecustom:focus {
    color: #ED6D28;
}
a:focus-visible,
button:focus-visible {
    outline: 3px solid #ED6D28;
    outline-offset: 2px;
}
.nav-link {
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ED6D28;
    transition: width 0.3s ease;
    border-radius: 2px;
}
.nav-link:hover::after,
.nav-link:focus-visible::after {
    width: 100%;
}
.nav-link.active {
    color: #ED6D28;
    font-weight: 700;
}
.nav-link.active::after {
    width: 100%;
}
#mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding-top: 4rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 50;
}
#mobile-menu.open {
    transform: translateX(0);
}
#mobile-menu a {
    font-size: 1.25rem;
    display: block;
    padding: 1rem 2rem;
}
#menu-close {
    position: fixed;
    top: 0.75rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: #222222;
    z-index: 60;
}
#menu-close:focus-visible {
    outline: 3px solid #ED6D28;
    outline-offset: 2px;
}
@keyframes fade-in {
    from { opacity:0; transform: translateY(20px);}
    to { opacity:1; transform: none;}
}
@keyframes fade-in-float {
    0%   { opacity:0; transform: translateY(40px);}
    80%  { opacity:1; transform: translateY(-8px);}
    100% { opacity:1; transform: translateY(0);}
}
.animate-fade-in {
    opacity: 0;
    animation: fade-in 800ms cubic-bezier(.4,0,.2,1) both;
}
.animate-fade-in-float {
    animation: fade-in-float 1200ms cubic-bezier(.4,0,.2,1) both;
}
.cta-material {
    background: #ED6D28;
    color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.14);
    border: none;
    position: relative;
    outline: none;
    z-index: 1;
    will-change: box-shadow, transform;
    transition: background 0.18s cubic-bezier(.4,0,.2,1),
    box-shadow 0.22s cubic-bezier(.4,0,.2,1),
    transform 0.22s cubic-bezier(.4,0,.2,1);
}
.cta-material:hover,
.cta-material:focus {
    background: #ff7e37;
    box-shadow: 0 4px 12px rgba(237,109,40,0.16), 0 2px 6px rgba(0,0,0,.12);
}
.cta-material:focus-visible {
    outline: 2.5px solid #FFB68A;
    outline-offset: 1.5px;
}
.cta-material:active {
    background: #d35b15;
    box-shadow: 0 1px 4px rgba(237,109,40,0.15), 0 1px 2px rgba(0,0,0,0.11);
    transform: scale(0.97);
}
.cta-material .cta-ripple {
    background: rgba(255,255,255,0.29);
    opacity: 0;
    transform: scale(0);
    transition: transform 0.35s, opacity 0.38s;
    z-index:2;
}
.cta-material.rippling .cta-ripple {
    opacity: 1;
    transform: scale(1.89);
    transition: transform 0.28s, opacity 0.35s;
}
.cta-material[disabled], .cta-material[aria-disabled="true"] {
    background: #eee;
    color: #aaa;
    box-shadow: none;
    cursor: not-allowed;
}
.select-placeholder:disabled { color: #aaa }
#access-badges .badge {
    background: #ED6D28;
    color: #fff;
    font-size: 0.91rem;
    border-radius: 9999px;
    padding: 0.2em 0.9em;
    font-weight: 600;
    margin-right: 5px;
    margin-bottom: 3px;
    display: inline-flex;
    align-items: center;
    gap: 0.25em;
}
#access-badges .badge .material-icons { font-size: 1.05em }
.swiper-pagination-bullet { background: #ED6D28 !important; opacity: 0.75; }
.swiper-pagination-bullet-active { background: #ED6D28 !important; opacity: 1; transform: scale(1.15); }
.swiper-button-next, .swiper-button-prev {
    color: #ED6D28 !important;
    background: transparent !important;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    background: transparent !important;
    color: #fff !important;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    position: absolute !important;
    bottom: 1.2rem !important;
    left: auto !important;
}
.swiper-button-next {
    right: 1.2rem !important;
}
.swiper-button-prev {
    right: 4.2rem !important;
}
@media (max-width: 1024px) {
    main article {
        display: block;
    }
}
.dyslexic-font {
    font-family: 'Open-Dyslexic', Arial, sans-serif !important;
}
dd {
    transition: max-height 0.3s ease;
}
.badge {
    display: inline-block;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 9999px;
    background: #F2F4F8;
    color: #333;
}
.line-clamp-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
#filters { margin-bottom: 1rem; }
#searchNews { padding: 0.5rem; border: 1px solid #ccc; border-radius: 0.375rem; flex-grow: 1; font-size: 1rem;}
#filters.flex-gap { display: flex; flex-wrap: wrap; gap: 1rem;}