.ic-v2 .material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* —— Editorial campaign card —— */
.ic-v2 .ic-v2-card {
    height: 100%;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.ic-v2 .ic-v2-card:hover {
    transform: translateY(-6px);
}

.ic-v2 .ic-v2-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none !important;
    color: inherit;
    background: #fff;
    border: 1px solid rgba(26, 28, 28, 0.08);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: border-color 0.35s ease, box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.ic-v2 .ic-v2-card:hover .ic-v2-card__link {
    border-color: rgba(145, 0, 10, 0.22);
    box-shadow: 0 24px 48px -16px rgba(26, 28, 28, 0.14);
}

.ic-v2 .ic-v2-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(145deg, #f3f3f3 0%, #e8e8e8 100%);
}

.ic-v2 .ic-v2-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

#new-home-root .ic-v2 .ic-v2-card__media img {
    height: 100% !important;
    max-height: none !important;
}

.ic-v2 .ic-v2-card:hover .ic-v2-card__media img {
    transform: scale(1.05);
}

.ic-v2 .ic-v2-card__media-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26, 28, 28, 0.35) 0%,
        rgba(26, 28, 28, 0.06) 38%,
        transparent 68%
    );
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

.ic-v2 .ic-v2-card:hover .ic-v2-card__media-shade {
    opacity: 1;
}

.ic-v2 .ic-v2-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.35rem 1.5rem 1.5rem;
    font-family: 'Public Sans', system-ui, sans-serif;
}

.ic-v2 .ic-v2-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(26, 28, 28, 0.08);
}

.ic-v2 .ic-v2-card__date {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5f5e5e;
    white-space: nowrap;
}

.ic-v2 .ic-v2-card__category {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #91000a;
}

.ic-v2 .ic-v2-card__title {
    margin: 0 0 0.65rem;
    font-family: 'Public Sans', system-ui, sans-serif !important;
    font-size: 1.375rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #1a1c1c !important;
    transition: color 0.3s ease;
}

.ic-v2 .ic-v2-card:hover .ic-v2-card__title {
    color: #91000a !important;
}

.ic-v2 .ic-v2-card__excerpt {
    margin: 0 0 1.1rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.65;
    color: #5f5e5e;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ic-v2 .ic-v2-card__footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.25rem;
}

.ic-v2 .ic-v2-card__cta {
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #91000a;
    transition: letter-spacing 0.35s ease;
}

.ic-v2 .ic-v2-card:hover .ic-v2-card__cta {
    letter-spacing: 0.22em;
}

.ic-v2 .ic-v2-card__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    border: 1px solid rgba(26, 28, 28, 0.12);
    color: #1a1c1c;
    transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.ic-v2 .ic-v2-card:hover .ic-v2-card__arrow {
    background: #91000a;
    border-color: #91000a;
    color: #fff;
    transform: translateX(3px);
}

.ic-v2 .ic-v2-card__arrow .material-symbols-outlined {
    font-size: 1.125rem;
}

/* Sidebar */
.ic-v2-sidebar-link.is-active span:first-child {
    color: #1a1c1c;
    font-weight: 700;
}

.ic-v2-sidebar-link.is-active {
    border-color: #91000a !important;
}

@media (min-width: 768px) {
    .ic-v2 .ic-v2-card__body {
        padding: 1.5rem 1.65rem 1.65rem;
    }

    .ic-v2 .ic-v2-card__title {
        font-size: 1.5rem;
    }
}
