.ssd-insight-page #main-content {
    background:
        radial-gradient(circle at 12% 0, rgba(23, 129, 216, 0.14), transparent 32%),
        radial-gradient(circle at 95% 8%, rgba(15, 105, 176, 0.12), transparent 34%),
        linear-gradient(180deg, #f4f8fc 0%, #edf3fa 100%);
}

.ssd-insight-main {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 18px 66px;
    animation: ssd-insight-fade-up 0.55s ease;
}

.ssd-insight-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #d7e4f3;
    border-radius: 18px;
    box-shadow: 0 18px 32px rgba(17, 24, 39, 0.1);
    overflow: hidden;
    position: relative;
}

.ssd-insight-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 220px;
    height: 5px;
    background: linear-gradient(90deg, #1781d8, #0f69b0);
    border-radius: 0 0 999px 0;
    z-index: 2;
}

.ssd-insight-cover {
    width: 100%;
    height: clamp(220px, 34vw, 370px);
    object-fit: cover;
    display: block;
    filter: saturate(1.08);
}

.ssd-insight-hero-inner {
    padding: 28px 24px 24px;
}

.ssd-insight-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.ssd-insight-chip {
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    padding: 0 13px;
    border-radius: 999px;
    background: #e9f3fd;
    color: #0f69b0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border: 1px solid #cce3f8;
}

.ssd-insight-hero h1 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15em;
    letter-spacing: 0.2px;
}

.ssd-insight-hero p {
    margin: 0;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.86em;
}

.ssd-insight-content {
    background: #ffffff;
    border: 1px solid #d7e4f3;
    border-radius: 18px;
    box-shadow: 0 14px 28px rgba(17, 24, 39, 0.08);
    margin-top: 24px;
    padding: 28px 24px;
}

.ssd-insight-content h2 {
    color: #1781d8;
    margin: 0 0 12px;
    padding-left: 12px;
    border-left: 4px solid #1781d8;
    font-size: clamp(23px, 3vw, 31px);
    line-height: 1.25em;
}

.ssd-insight-content p {
    color: #374151;
    font-size: 16px;
    line-height: 1.92em;
    margin: 0 0 14px;
}

.ssd-insight-content ul {
    margin: 0 0 14px;
    padding-left: 22px;
}

.ssd-insight-content li {
    color: #374151;
    font-size: 16px;
    line-height: 1.84em;
    margin-bottom: 8px;
}

.ssd-insight-content li::marker {
    color: #1781d8;
}

.ssd-insight-links {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.ssd-insight-link-card {
    display: block;
    background: #f8fbff;
    border: 1px solid #d6e7fa;
    border-radius: 12px;
    padding: 14px 16px;
    color: #0f172a !important;
    text-decoration: none !important;
    font-weight: 700;
    line-height: 1.46em;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.ssd-insight-link-card:hover {
    border-color: #1781d8;
    box-shadow: 0 12px 22px rgba(23, 129, 216, 0.16);
    transform: translateY(-2px);
}

.ssd-insight-actions {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ssd-insight-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 0 22px;
    border-radius: 999px;
    border: 2px solid #1781d8;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: 0.2px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.ssd-insight-page .ssd-insight-actions a.ssd-insight-button--primary {
    background: linear-gradient(135deg, #1781d8, #0f69b0);
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
}

.ssd-insight-page .ssd-insight-actions a.ssd-insight-button--ghost {
    background: #ffffff;
    color: #1781d8 !important;
    -webkit-text-fill-color: #1781d8;
}

.ssd-insight-button:hover {
    transform: translateY(-1px);
}

.ssd-insight-button--primary:hover {
    filter: brightness(1.03);
    box-shadow: 0 12px 22px rgba(23, 129, 216, 0.26);
}

.ssd-insight-button--ghost:hover {
    box-shadow: 0 10px 18px rgba(17, 24, 39, 0.1);
    background: #f8fbff;
}

@keyframes ssd-insight-fade-up {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media only screen and (max-width: 980px) {
    .ssd-insight-main {
        padding: 0 14px 52px;
    }

    .ssd-insight-links {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 767px) {
    .ssd-insight-hero,
    .ssd-insight-content {
        border-radius: 14px;
    }

    .ssd-insight-hero-inner,
    .ssd-insight-content {
        padding: 20px 16px;
    }

    .ssd-insight-hero h1 {
        font-size: clamp(28px, 8.2vw, 38px);
    }

    .ssd-insight-content p,
    .ssd-insight-content li {
        font-size: 15px;
    }
}
/* Premium polish layer for Insights pages */
.ssd-insight-page #main-content {
    position: relative;
    overflow: hidden;
}

.ssd-insight-page #main-content::before,
.ssd-insight-page #main-content::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
}

.ssd-insight-page #main-content::before {
    width: clamp(230px, 30vw, 430px);
    height: clamp(230px, 30vw, 430px);
    top: -110px;
    right: -130px;
    background: radial-gradient(circle at center, rgba(23, 129, 216, 0.22), rgba(23, 129, 216, 0));
    animation: ssd-insight-float 12s ease-in-out infinite;
}

.ssd-insight-page #main-content::after {
    width: clamp(190px, 24vw, 320px);
    height: clamp(190px, 24vw, 320px);
    bottom: -120px;
    left: -90px;
    background: radial-gradient(circle at center, rgba(15, 105, 176, 0.18), rgba(15, 105, 176, 0));
    animation: ssd-insight-float 14s ease-in-out infinite reverse;
}

.ssd-insight-main {
    position: relative;
    z-index: 1;
    padding-top: 18px;
}

@media only screen and (min-width: 981px) {
    .ssd-insight-hero {
        display: grid;
        grid-template-columns: minmax(320px, 1.08fr) minmax(300px, 1fr);
        align-items: stretch;
    }

    .ssd-insight-cover {
        height: 100%;
        min-height: 360px;
        transition: transform 0.55s ease;
    }

    .ssd-insight-hero:hover .ssd-insight-cover {
        transform: scale(1.04);
    }

    .ssd-insight-hero-inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.ssd-insight-hero,
.ssd-insight-content {
    border-radius: 20px;
    box-shadow: 0 22px 40px rgba(17, 24, 39, 0.12);
}

.ssd-insight-chip {
    backdrop-filter: blur(3px);
    box-shadow: 0 8px 14px rgba(23, 129, 216, 0.12);
}

.ssd-insight-content h2 {
    position: relative;
    border-left: 0;
    padding-left: 0;
    margin-bottom: 14px;
}

.ssd-insight-content h2::after {
    content: "";
    display: block;
    width: 62px;
    height: 4px;
    margin-top: 8px;
    border-radius: 99px;
    background: linear-gradient(90deg, #1781d8, #0f69b0);
}

.ssd-insight-links {
    margin-top: 16px;
    gap: 16px;
}

.ssd-insight-link-card {
    position: relative;
    padding: 16px 42px 16px 16px;
    border-radius: 14px;
    box-shadow: 0 10px 20px rgba(17, 24, 39, 0.08);
    overflow: hidden;
}

.ssd-insight-link-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, #1781d8, #0f69b0);
    opacity: 0;
    transition: opacity 0.24s ease;
}

.ssd-insight-link-card::after {
    content: ">";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #1781d8;
    font-size: 20px;
    font-weight: 700;
    opacity: 0.6;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.ssd-insight-link-card:hover::before {
    opacity: 1;
}

.ssd-insight-link-card:hover::after {
    transform: translate(4px, -50%);
    opacity: 1;
}

.ssd-insight-actions {
    margin-top: 24px;
}

.ssd-insight-button {
    min-height: 48px;
}

@keyframes ssd-insight-float {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, 14px, 0) scale(1.04);
    }
}

@media only screen and (max-width: 980px) {
    .ssd-insight-main {
        padding-top: 10px;
    }
}
