a {
    text-decoration: none !important;
}

/* =========================
        PREMIUM CONTENT BOX
    ========================= */
.premium-content-box .container {
    position: relative;
    padding: clamp(28px, 4vw, 50px);
    /* margin-top: 100px; */
    border-radius: var(--radius-xl);
    overflow: hidden;
    background:
        linear-gradient(rgba(255, 255, 255, 0.92),
            rgba(255, 255, 255, 0.86)) padding-box,

        linear-gradient(135deg,
            rgba(66, 133, 244, 0.14),
            rgba(52, 168, 83, 0.12)) border-box;

    border: 1px solid transparent;
    backdrop-filter: blur(18px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.05),
        0 10px 30px rgba(66, 133, 244, 0.05);
}

/* top glow */
.premium-content-box::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(90deg,
            var(--color-blue),
            var(--color-green));
}

/* heading */
.content-header h2 {
    margin-top: 18px;

    max-width: 18ch;

    line-height: 1.08;

    letter-spacing: -0.04em;
}

/* badge */
.content-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 16px;

    border-radius: var(--radius-pill);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: var(--color-blue);

    background:
        linear-gradient(rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0.5)) padding-box,

        linear-gradient(135deg,
            rgba(66, 133, 244, 0.18),
            rgba(52, 168, 83, 0.14)) border-box;

    border: 1px solid transparent;
}

/* text */
.content-body {
    margin-top: 28px;
}

.content-body p {
    color: var(--color-text-muted);

    line-height: 1.9;

    margin-bottom: 22px;
}

/* hidden content */
.content-more {

    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:

        max-height .6s ease,

        opacity .35s ease;

}

.content-more.active {

    max-height: 10000px;

    opacity: 1;

}

/* button */
.premium-readmore {
    margin-top: 10px;

    padding-inline: 24px;

    font-weight: 600;

    box-shadow:
        0 12px 25px rgba(66, 133, 244, 0.16);
}

.premium-readmore i {
    transition: transform 0.35s var(--ease);
}

.premium-readmore:hover i {
    transform: translateX(4px);
}

/* mobile */
@media (max-width: 600px) {

    .premium-content-box {
        padding: 24px;
    }

    .content-header h2 {
        max-width: 100%;
    }
}