/* =========================
   AWARDS & RECOGNITION
   Main Wrapper
========================= */

.ar-g {
    padding: 80px 30px;
    background: linear-gradient(
        135deg,
        #f7fbff 0%,
        #eef8ff 35%,
        #ffffff 70%,
        #f3fbff 100%
    );
    position: relative;
    overflow: hidden;
}

/* Decorative background */

.ar-g::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(70, 181, 255, 0.12),
        transparent 70%
    );
    top: -200px;
    right: -100px;
    border-radius: 50%;
}

.ar-g::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(255, 210, 80, 0.15),
        transparent 70%
    );
    bottom: -150px;
    left: -100px;
    border-radius: 50%;
}

/* =========================
   SECTION TITLE
========================= */

.ar-g h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 800;
    color: #0d3558;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    letter-spacing: -1px;
}

.ar-g h2::after {
    content: "";
    width: 90px;
    height: 5px;
    background: linear-gradient(
        90deg,
        #38bdf8,
        #fbbf24
    );
    display: block;
    margin: 18px auto 0;
    border-radius: 30px;
}

/* =========================
   COLUMNS CONTAINER
========================= */

.ar-g .wp-block-columns {
    gap: 35px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

/* =========================
   INDIVIDUAL CARD
========================= */

.ar-g .wp-block-column {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 28px;
    padding: 35px 28px;
    box-shadow:
        0 15px 35px rgba(0,0,0,0.06),
        0 5px 15px rgba(0,0,0,0.04);
    transition: all 0.45s ease;
    position: relative;
    overflow: hidden;
}

/* Top Accent Line */

.ar-g .wp-block-column::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        90deg,
        #38bdf8,
        #60a5fa,
        #fbbf24
    );
}

/* Hover */

.ar-g .wp-block-column:hover {
    transform: translateY(-12px);
    box-shadow:
        0 25px 50px rgba(0,0,0,0.12);
}

/* =========================
   IMAGE
========================= */

.ar-g img {
    width: 100%;
    border-radius: 20px;
    display: block;
    transition: all 0.5s ease;
    box-shadow:
        0 10px 25px rgba(0,0,0,0.08);
}

.ar-g .wp-block-column:hover img {
    transform: scale(1.05);
}

/* =========================
   CARD HEADING
========================= */

.ar-g h3,
.ar-g h4 {
    color: #0d3558;
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 1.4rem;
    font-weight: 700;
}

/* =========================
   PARAGRAPH
========================= */

.ar-g p {
    color: #5f6b7a;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 0;
}

/* =========================
   AWARD ICON EFFECT
========================= */

.ar-g .wp-block-column:hover::after {
    content: "🏆";
    position: absolute;
    top: 15px;
    right: 18px;
    font-size: 1.5rem;
    opacity: 0.2;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {

    .ar-g {
        padding: 70px 25px;
    }

    .ar-g .wp-block-columns {
        gap: 25px;
    }
}

@media (max-width: 768px) {

    .ar-g {
        padding: 60px 20px;
    }

    .ar-g .wp-block-column {
        padding: 25px;
    }

    .ar-g h2 {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {

    .ar-g .wp-block-column {
        border-radius: 22px;
    }

    .ar-g img {
        border-radius: 16px;
    }

    .ar-g p {
        font-size: 0.95rem;
    }
}