.ioa-news-2025 {
    /* Color palette from your specifications */
    --color-title-1: #2E3A61;
    --color-title-2: #0AA7FF;
    --color-highlight: #0563C1;
    --color-surface: #ffffff;
    --color-background: #f8fafc;
    --color-border: #e5e7eb;
    --color-text-primary: #111827;
    --color-text-secondary: #374151;
    --color-text-tertiary: #6b7280;
    --color-primary: #0AA7FF; /* Added for Teleporter consistency */

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Spacing */
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 40px;
    --space-3xl: 48px;

    /* Border radius */
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--color-background);
    position: relative;
}

.ioa-news-2025 *,
.ioa-news-2025 *::before,
.ioa-news-2025 *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Sup/Sub fix to prevent line-height breakage */
.ioa-news-2025 sup,
.ioa-news-2025 sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
.ioa-news-2025 sup { top: -0.5em; }
.ioa-news-2025 sub { bottom: -0.25em; }

.ioa-news-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-xl);
}

/* 
   FULL WIDTH MODE OVERRIDE 
   Activated via Widget Switcher
*/
.ioa-news-2025.ioa-full-width-layout .ioa-news-container {
    max-width: 100%;
    width: 100%;
    padding-left: 3%;
    padding-right: 3%;
}

/* =========================================
TELEPORT SLOTS (Extracted Feature)
========================================= */
.ioa-teleport-slot {
    min-height: 0;
    transition: all 0.3s ease;
    margin-bottom: 0;
    width: 100%;
}

.ioa-teleport-slot.has-content {
    margin-bottom: 2rem;
    animation: ioa-fade-in 0.5s ease;
}

/* Editor Visuals - Visible only in Elementor Editor (.is-editor-mode added via PHP) */
.is-editor-mode .ioa-teleport-slot {
    min-height: 40px;
    border: 1px dashed rgba(10, 167, 255, 0.3); /* Using Brand Blue */
    background: rgba(10, 167, 255, 0.05);
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.is-editor-mode .ioa-teleport-slot::before {
    content: attr(data-label);
    font-size: 11px;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

@keyframes ioa-fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Header --- */
.ioa-news-header {
    margin-bottom: var(--space-3xl);
}

.ioa-news-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--color-title-1);
    margin-bottom: var(--space-md);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.ioa-news-subtitle {
    font-size: 18px;
    color: var(--color-title-2);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.ioa-news-description {
    font-size: 16px;
    color: var(--color-text-tertiary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Carousel Layout --- */
.ioa-carousel-section {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.ioa-carousel-container {
    flex: 1;
    overflow: hidden;
    order: 2;
}

.ioa-carousel-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: var(--space-lg);
}

/* --- Cards --- */
.ioa-news-card {
    flex: 0 0 350px;
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
}

.ioa-news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-title-2);
}

.ioa-news-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.ioa-news-card:hover .ioa-news-card-image {
    transform: scale(1.05);
}

.ioa-news-card-content {
    padding: var(--space-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ioa-news-card-category {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-title-2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.ioa-news-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.3;
    margin-bottom: var(--space-md);
    min-height: 46px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ioa-news-card-description {
    font-size: 14px;
    color: var(--color-text-tertiary);
    line-height: 1.5;
    min-height: 63px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.ioa-news-card-date {
    font-size: 12px;
    color: var(--color-text-tertiary);
    font-weight: 500;
    margin-top: auto;
}

/* --- Navigation --- */
.ioa-carousel-nav {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
    z-index: 2;
}

.ioa-carousel-nav:hover {
    background: var(--color-title-1);
    border-color: var(--color-title-1);
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.ioa-carousel-nav:hover .ioa-carousel-nav-icon {
    fill: white;
}

.ioa-carousel-nav-prev {
    order: 1;
}

.ioa-carousel-nav-next {
    order: 3;
}

.ioa-carousel-nav-icon {
    width: 20px;
    height: 20px;
    fill: var(--color-text-secondary);
    transition: var(--transition);
}

.ioa-carousel-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* --- Dots --- */
.ioa-carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-2xl);
}

.ioa-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--color-border);
    cursor: pointer;
    transition: var(--transition);
}

.ioa-carousel-dot.active {
    background: var(--color-title-2);
    transform: scale(1.25);
}

.ioa-carousel-dot:hover {
    background: var(--color-title-1);
}

/* Responsive design */
@media (max-width: 1200px) {
    .ioa-carousel-section {
        gap: var(--space-lg);
    }
    .ioa-news-card {
        flex: 0 0 320px;
    }
}

@media (max-width: 768px) {
    .ioa-news-container {
        padding: var(--space-2xl) var(--space-md);
    }
    .ioa-news-title {
        font-size: 36px;
    }
    .ioa-carousel-section {
        gap: 0;
    }
    .ioa-news-card {
        flex: 0 0 280px;
    }
    .ioa-carousel-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .ioa-news-title {
        font-size: 32px;
    }
    .ioa-news-card {
        flex: 0 0 260px;
    }
    .ioa-carousel-wrapper {
        gap: var(--space-md);
    }
}