.itc-block {
    overflow: hidden;
}
.itc-block.bg--light      { background-color: #F6F3F0; }
.itc-block.bg--light-blue { background-color: #EAF4FA; }
.itc-block.bg--gradient   { background: linear-gradient(90deg, #162835, #1F5472); }

/* ── Header ──────────────────────────────────────────────────────────────── */

.itc-block__header {
    margin-bottom: 2rem;
}
.itc-block__subtitle {
    margin-bottom: 0.5rem;
}
.itc-block__title {
    margin-bottom: 0;
}

/* ── Top layout: image + text ────────────────────────────────────────────── */

.itc-block__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.itc-block__image-col {
    border-radius: 5px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}
.itc-block__image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Two-column text mode ────────────────────────────────────────────────── */

.itc-block__top--text-only {
    grid-template-columns: 1fr;
}
.itc-block__top--text-only .itc-block__content-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* ── WYSIWYG ─────────────────────────────────────────────────────────────── */

.itc-block__wysiwyg p {
    font-size: clamp(13px, 1vw, 15px);
    line-height: 1.7;
    margin-top: 0;
}
.itc-block__wysiwyg h2,
.itc-block__wysiwyg h3 {
    font-family: "helvetica-lt-pro", sans-serif;
    color: #1F3642;
    margin-top: 0;
}

/* Gradient bg text overrides */
.itc-block.bg--gradient .itc-block__wysiwyg p,
.itc-block.bg--gradient .itc-block__wysiwyg li {
    color: #F3E9E0;
}
.itc-block.bg--gradient .itc-block__wysiwyg h2,
.itc-block.bg--gradient .itc-block__wysiwyg h3 {
    color: #F3E9E0;
}
.itc-block.bg--gradient .itc-block__subtitle,
.itc-block.bg--gradient .itc-block__title {
    color: #A3D4F2;
}

/* Gradient bg carousel + nav overrides */
.itc-block.bg--gradient .itc-block__carousel-subtitle {
    color: #F6F3F0;
}
.itc-block.bg--gradient .itc-block__card-link,
.itc-block.bg--gradient .itc-block__card-name {
    color: #F6F3F0;
}
.itc-block.bg--gradient .itc-block__card-link:hover {
    color: #A3D4F2;
}
.itc-block.bg--gradient .itc-block__nav-label {
    color: #F6F3F0;
}

/* ── Two-col bottom images ───────────────────────────────────────────────── */

.itc-block__text-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.itc-block__text-image {
    border-radius: 5px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}
.itc-block__text-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Carousel section ────────────────────────────────────────────────────── */

.itc-block__carousel-section {
    margin-top: 1rem;
}

.itc-block__carousel-subtitle {
    margin-bottom: 1.5rem;
    color: #1F3642;
}
.itc-block__carousel-subtitle--center {
    text-align: center;
}

/* ── Swiper ──────────────────────────────────────────────────────────────── */

.itc-block__swiper {
    overflow: hidden;
}

/* Editor fallback — Swiper not initialized */
.itc-block__swiper:not(.swiper-initialized) .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
}
.itc-block__swiper:not(.swiper-initialized) .swiper-slide {
    flex: 0 0 calc(16.67% - 14px);
    min-width: 0;
}

/* ── Carousel card ───────────────────────────────────────────────────────── */

.itc-block__slide {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.itc-block__card {
    background: #ffffff;
    border-radius: 5px;
    aspect-ratio: 6 / 5;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
}
.itc-block__card img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.itc-block__card-footer {
    display: flex;
    align-items: flex-start;
}

.itc-block__card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "helvetica-lt-pro", sans-serif;
    font-size: clamp(11px, 0.9vw, 14px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #1F3642;
    text-decoration: none;
    transition: color 180ms ease;
}
.itc-block__card-link svg {
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 180ms ease, transform 180ms ease;
}
.itc-block__card-link:hover {
    color: #3A7594;
    text-decoration: none;
}
.itc-block__card-link:hover svg {
    opacity: 1;
    transform: translate(2px, -2px);
}

.itc-block__card-name {
    font-family: "helvetica-lt-pro", sans-serif;
    font-size: clamp(11px, 0.9vw, 14px);
    font-weight: 700;
    color: #1F3642;
}

/* ── Navigation ──────────────────────────────────────────────────────────── */

.itc-block__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 1.75rem;
}

.itc-block__nav-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.itc-block__nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 34px;
    border-radius: 100px;
    border: none;
    background: #1F3642;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: background 200ms ease, opacity 200ms ease, transform 150ms ease;
    flex-shrink: 0;
}
.itc-block__nav-btn:hover:not(:disabled):not(.is-disabled) {
    background: #2a4d5f;
    transform: scale(1.04);
}
.itc-block__nav-btn:disabled,
.itc-block__nav-btn.is-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.itc-block__nav-label {
    font-family: "helvetica-lt-pro", sans-serif;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1F3642;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media screen and (max-width: 1024px) {
    .itc-block__top {
        gap: 2rem;
    }
    .itc-block__top--text-only .itc-block__content-col {
        gap: 2rem;
    }
}

@media screen and (max-width: 900px) {
    .itc-block__top {
        grid-template-columns: 1fr;
    }
    .itc-block__top--text-only .itc-block__content-col {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
