  /* =========================================================
       COMPACT HOME EVENTS SECTION
       Unique chpev- prefix avoids CSS conflicts.
    ========================================================= */

    .chpev-section,
    .chpev-section * {
        box-sizing: border-box;
    }

    .chpev-section {
        --chpev-navy: #092542;
        --chpev-dark: #06192f;
        --chpev-blue: #2d69bb;
        --chpev-gold: #c9953d;
        --chpev-light-gold: #f2d494;
        --chpev-burgundy: #8a304c;
        --chpev-orange: #f58236;
        --chpev-cream: #fff8eb;
        --chpev-soft-blue: #edf5ff;
        --chpev-text: #26364b;
        --chpev-gray: #6a7585;

        position: relative;
        isolation: isolate;
        overflow: hidden;
        padding: clamp(42px, 5vw, 62px) 0;
        color: var(--chpev-text);
        font-family: "DM Sans", sans-serif;
        background:
            radial-gradient(
                circle at 8% 16%,
                rgba(201, 149, 61, 0.14),
                transparent 25%
            ),
            radial-gradient(
                circle at 92% 75%,
                rgba(45, 105, 187, 0.11),
                transparent 26%
            ),
            linear-gradient(
                135deg,
                #fff8eb 0%,
                #f2f7fe 52%,
                #fffaf2 100%
            );
    }

    .chpev-section::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -3;
        opacity: 0.28;
        background-image:
            linear-gradient(
                rgba(9, 37, 66, 0.03) 1px,
                transparent 1px
            ),
            linear-gradient(
                90deg,
                rgba(9, 37, 66, 0.03) 1px,
                transparent 1px
            );
        background-size: 34px 34px;
        pointer-events: none;
    }

    .chpev-section::after {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        width: min(700px, 78%);
        height: 2px;
        transform: translateX(-50%);
        background: linear-gradient(
            90deg,
            transparent,
            rgba(201, 149, 61, 0.8),
            transparent
        );
    }

    .chpev-shape {
        position: absolute;
        z-index: -2;
        border-radius: 50%;
        pointer-events: none;
    }

    .chpev-shape-one {
        top: -100px;
        left: -90px;
        width: 230px;
        height: 230px;
        border: 1px solid rgba(201, 149, 61, 0.2);
        box-shadow:
            0 0 0 25px rgba(201, 149, 61, 0.03),
            0 0 0 50px rgba(201, 149, 61, 0.018);
    }

    .chpev-shape-two {
        right: -100px;
        bottom: -120px;
        width: 260px;
        height: 260px;
        background: rgba(45, 105, 187, 0.07);
    }

    /* Centered heading */
    .chpev-heading {
        max-width: 760px;
        margin-bottom: clamp(24px, 3vw, 34px);
    }

    .chpev-eyebrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-bottom: 9px;
        color: var(--chpev-gold);
    }

    .chpev-eyebrow > span:not(.chpev-eyebrow-icon) {
        width: 26px;
        height: 1px;
        background: linear-gradient(
            90deg,
            transparent,
            var(--chpev-gold)
        );
    }

    .chpev-eyebrow > span:last-child {
        background: linear-gradient(
            90deg,
            var(--chpev-gold),
            transparent
        );
    }

    .chpev-eyebrow-icon {
        display: inline-flex;
        width: 29px;
        height: 29px;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(201, 149, 61, 0.45);
        border-radius: 8px;
        color: var(--chpev-gold);
        background: rgba(255, 255, 255, 0.65);
        box-shadow: 0 5px 15px rgba(201, 149, 61, 0.12);
        font-size: 0.7rem;
    }

    .chpev-eyebrow small {
        font-size: 0.65rem;
        font-weight: 800;
        letter-spacing: 0.13em;
        text-transform: uppercase;
    }

    .chpev-heading h2 {
        margin: 0;
        color: var(--chpev-navy);
        font-family: "Archivo Black", sans-serif;
        font-size: clamp(1.9rem, 3.5vw, 3.1rem);
        line-height: 1.1;
        letter-spacing: -0.035em;
    }

    .chpev-heading p {
        margin: 10px 0 0;
        color: var(--chpev-gray);
        font-size: clamp(0.84rem, 1.2vw, 0.96rem);
        line-height: 1.6;
    }

    /* Event card */
    .chpev-card {
        position: relative;
        display: flex;
        height: 100%;
        min-height: 216px;
        overflow: hidden;
        border: 1px solid rgba(9, 37, 66, 0.1);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.83);
        box-shadow:
            0 14px 35px rgba(9, 37, 66, 0.08),
            0 3px 10px rgba(9, 37, 66, 0.04);
        backdrop-filter: blur(10px);
        transition:
            transform 0.35s ease,
            box-shadow 0.35s ease,
            border-color 0.35s ease;
    }

    .chpev-card::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 3px;
        background: linear-gradient(
            90deg,
            var(--chpev-gold),
            var(--chpev-orange),
            var(--chpev-blue)
        );
        transition: width 0.4s ease;
    }

    .chpev-card:hover {
        transform: translateY(-7px);
        border-color: rgba(201, 149, 61, 0.4);
        box-shadow:
            0 24px 50px rgba(9, 37, 66, 0.14),
            0 5px 14px rgba(9, 37, 66, 0.05);
    }

    .chpev-card:hover::after {
        width: 100%;
    }

    /* Card image */
    .chpev-image-wrap {
        position: relative;
        width: 42%;
        min-width: 145px;
        overflow: hidden;
        background: #dce7f2;
    }

    .chpev-image {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 216px;
        object-fit: cover;
        transition: transform 0.65s ease;
    }

    .chpev-card:hover .chpev-image {
        transform: scale(1.075);
    }

    .chpev-image-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
            0deg,
            rgba(6, 25, 47, 0.72),
            transparent 63%
        );
        pointer-events: none;
    }

    .chpev-date-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        display: flex;
        width: 53px;
        height: 59px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 9px;
        color: #fff;
        background: #b57d25;
        box-shadow: 0 9px 22px rgba(6, 25, 47, 0.28);
    }

    .chpev-date-blue {
        background: #215a9e;
    }

    .chpev-date-burgundy {
        background: #7f2944;
    }

    .chpev-date-badge strong {
        font-size: 1.12rem;
        line-height: 1;
    }

    .chpev-date-badge span {
        margin-top: 4px;
        font-size: 0.54rem;
        font-weight: 800;
        letter-spacing: 0.12em;
    }

    .chpev-category {
        position: absolute;
        left: 12px;
        bottom: 12px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 5px 8px;
        border: 1px solid rgba(255, 255, 255, 0.28);
        border-radius: 7px;
        color: #fff;
        background: rgba(6, 25, 47, 0.72);
        backdrop-filter: blur(7px);
        font-size: 0.58rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .chpev-category i {
        color: var(--chpev-light-gold);
    }

    /* Card content */
    .chpev-content {
        display: flex;
        width: 58%;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 18px 16px;
    }

    .chpev-content h3 {
        margin: 0 0 7px;
        color: var(--chpev-navy);
        font-size: 1.03rem;
        font-weight: 800;
        line-height: 1.3;
    }

    .chpev-content p {
        display: -webkit-box;
        margin: 0 0 11px;
        overflow: hidden;
        color: var(--chpev-gray);
        font-size: 0.73rem;
        line-height: 1.5;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    /* Attractive bordered icons */
    .chpev-meta {
        display: grid;
        width: 100%;
        gap: 6px;
        padding-top: 9px;
        border-top: 1px solid rgba(9, 37, 66, 0.08);
    }

    .chpev-meta-item {
        display: flex;
        align-items: center;
        gap: 7px;
        color: #576576;
        font-size: 0.64rem;
        font-weight: 600;
    }

    .chpev-meta-icon {
        display: inline-flex;
        width: 25px;
        height: 25px;
        flex: 0 0 25px;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(201, 149, 61, 0.42);
        border-radius: 7px;
        color: var(--chpev-gold);
        background: rgba(201, 149, 61, 0.07);
        font-size: 0.63rem;
        transition:
            color 0.3s ease,
            background 0.3s ease,
            transform 0.3s ease;
    }

    .chpev-card:hover .chpev-meta-icon {
        color: #fff;
        background: var(--chpev-gold);
        transform: rotate(-5deg);
    }

    /* Dark solid Read More button */
    .chpev-read-btn {
        position: relative;
        display: inline-flex;
        min-height: 35px;
        align-items: center;
        justify-content: center;
        gap: 7px;
        margin-top: 12px;
        padding: 7px 14px;
        overflow: hidden;
        border: 1px solid rgba(242, 212, 148, 0.4);
        border-radius: 50px;
        color: #fff;
        background: var(--chpev-dark);
        box-shadow:
            0 8px 18px rgba(45, 105, 187, 0.2),
            0 5px 12px rgba(245, 130, 54, 0.22);
        font-size: 0.65rem;
        font-weight: 800;
        letter-spacing: 0.02em;
        text-decoration: none;
        animation: chpevFloat 3s ease-in-out infinite;
        transition:
            transform 0.3s ease,
            background 0.3s ease,
            box-shadow 0.3s ease;
    }

    .chpev-read-btn::before,
    .chpev-view-all-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 55%;
        height: 100%;
        background: linear-gradient(
            120deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent
        );
        transform: skewX(-25deg);
        transition: left 0.7s ease;
    }

    .chpev-read-btn span,
    .chpev-read-btn i,
    .chpev-view-all-btn > span,
    .chpev-view-all-btn > i {
        position: relative;
        z-index: 1;
    }

    .chpev-read-btn i,
    .chpev-arrow {
        transition: transform 0.3s ease;
    }

    .chpev-read-btn:hover {
        color: #fff;
        background: #123b68;
        transform: translateY(-3px) scale(1.04);
        box-shadow:
            0 13px 27px rgba(45, 105, 187, 0.34),
            0 8px 18px rgba(245, 130, 54, 0.32);
    }

    .chpev-read-btn:hover::before,
    .chpev-view-all-btn:hover::before {
        left: 145%;
    }

    .chpev-read-btn:hover i,
    .chpev-view-all-btn:hover .chpev-arrow {
        transform: translateX(5px);
    }

    /* View all events button */
    .chpev-view-all-wrap {
        margin-top: 25px;
    }

    .chpev-view-all-btn {
        position: relative;
        display: inline-flex;
        min-height: 47px;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 8px 20px 8px 9px;
        overflow: hidden;
        border: 1px solid rgba(242, 212, 148, 0.4);
        border-radius: 50px;
        color: #fff;
        background: var(--chpev-navy);
        box-shadow:
            0 12px 26px rgba(45, 105, 187, 0.23),
            0 7px 15px rgba(245, 130, 54, 0.23);
        font-size: 0.74rem;
        font-weight: 800;
        text-decoration: none;
        animation: chpevFloat 3.2s ease-in-out infinite;
        transition:
            transform 0.3s ease,
            background 0.3s ease,
            box-shadow 0.3s ease;
    }

    .chpev-view-icon {
        display: inline-flex;
        width: 35px;
        height: 35px;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(242, 212, 148, 0.5);
        border-radius: 50%;
        color: var(--chpev-light-gold);
        background: rgba(255, 255, 255, 0.08);
        font-size: 0.8rem;
    }

    .chpev-view-all-btn:hover {
        color: #fff;
        background: #123b68;
        transform: translateY(-4px) scale(1.03);
        box-shadow:
            0 18px 34px rgba(45, 105, 187, 0.32),
            0 10px 20px rgba(245, 130, 54, 0.31);
    }

    .chpev-read-btn:focus-visible,
    .chpev-view-all-btn:focus-visible {
        outline: 3px solid rgba(45, 105, 187, 0.35);
        outline-offset: 4px;
    }

    @keyframes chpevFloat {
        0%,
        100% {
            translate: 0 0;
        }

        50% {
            translate: 0 -2px;
        }
    }

    /* Tablet */
    @media (max-width: 991.98px) {
        .chpev-card {
            min-height: 208px;
        }

        .chpev-image {
            min-height: 208px;
        }
    }

    /* Mobile */
    @media (max-width: 575.98px) {
        .chpev-section {
            padding: 39px 0;
        }

        .chpev-heading {
            margin-bottom: 22px;
        }

        .chpev-eyebrow small {
            font-size: 0.57rem;
            letter-spacing: 0.09em;
        }

        .chpev-card {
            min-height: 188px;
        }

        .chpev-image-wrap {
            width: 39%;
            min-width: 120px;
        }

        .chpev-image {
            min-height: 188px;
        }

        .chpev-content {
            width: 61%;
            padding: 14px 12px;
        }

        .chpev-content h3 {
            font-size: 0.91rem;
        }

        .chpev-content p {
            font-size: 0.68rem;
            -webkit-line-clamp: 2;
        }

        .chpev-date-badge {
            top: 9px;
            left: 9px;
            width: 46px;
            height: 52px;
        }

        .chpev-category {
            left: 9px;
            bottom: 9px;
            padding: 4px 6px;
            font-size: 0.5rem;
        }

        .chpev-meta-icon {
            width: 22px;
            height: 22px;
            flex-basis: 22px;
        }

        .chpev-read-btn {
            min-height: 31px;
            margin-top: 9px;
            padding: 6px 10px;
            font-size: 0.59rem;
        }

        .chpev-view-all-wrap {
            margin-top: 22px;
        }

        .chpev-view-all-btn {
            min-height: 44px;
            padding-right: 17px;
            font-size: 0.69rem;
        }

        .chpev-view-icon {
            width: 32px;
            height: 32px;
        }

        .chpev-shape {
            display: none;
        }
    }

    @media (max-width: 390px) {
        .chpev-image-wrap {
            min-width: 107px;
        }

        .chpev-content {
            padding: 12px 9px;
        }

        .chpev-content h3 {
            font-size: 0.84rem;
        }

        .chpev-meta-item {
            font-size: 0.57rem;
        }
    }

    /* Reduced motion accessibility */
    @media (prefers-reduced-motion: reduce) {
        .chpev-section *,
        .chpev-section *::before,
        .chpev-section *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
            scroll-behavior: auto !important;
        }
    }