.elementor-600 .elementor-element.elementor-element-c49a3b6{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-600 .elementor-element.elementor-element-faf2d4a{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-faf2d4a *//* =========================
   WORLD SECTION
========================= */

.world-section {

    background-image: url('https://simondeanhowells.com/wp-content/uploads/2026/05/d825b75f-5516-4b68-995a-63ab48afa10e.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    padding: 120px 40px;

    position: relative;

    overflow: hidden;
}

/* REMOVE HEAVY DARK OVERLAY */

/*.world-section::before {*/

/*    content: "";*/

/*    position: absolute;*/

/*    inset: 0;*/

/*    background:*/
/*        linear-gradient(*/
/*            rgba(10,5,8,0.12),*/
/*            rgba(10,5,8,0.18)*/
/*        );*/

/*    z-index: 1;*/
/*}*/

/* =========================
   SECTION HEADING
========================= */

.world-heading {

    position: relative;

    z-index: 2;

    text-align: center;

    font-family: 'Cinzel', serif;

    font-size: 60px;

    color: #F2D98A;

    margin-bottom: 80px;

    letter-spacing: 3px;

    text-shadow:
        0 0 12px rgba(0,0,0,0.55),
        0 0 25px rgba(0,0,0,0.45);
}

/* =========================
   CARDS CONTAINER
========================= */

.world-cards-container {

    position: relative;

    z-index: 2;

    display: flex;

    justify-content: center;

    align-items: stretch;

    gap: 22px;

    flex-wrap: nowrap;

    overflow-x: auto;

    padding-bottom: 20px;

    scrollbar-width: none;
}

.world-cards-container::-webkit-scrollbar {

    display: none;
}

/* =========================
   CARD
========================= */

.world-card {

    min-width: 270px;

    max-width: 270px;

    /* LIGHTER GLASS EFFECT */

    background: rgba(25, 10, 18, 0.22);

    backdrop-filter: blur(5px);

    border: 1px solid rgba(242, 217, 138, 0.18);

    border-radius: 26px;

    overflow: hidden;

    transition: all 0.55s ease;

    position: relative;

    box-shadow:
        0 8px 24px rgba(0,0,0,0.22);

    flex-shrink: 0;
}

.world-card:hover {

    transform:
        translateY(-14px)
        scale(1.02);

    box-shadow:
        0 20px 45px rgba(0,0,0,0.38),
        0 0 22px rgba(242,217,138,0.08);
}

/* =========================
   CARD IMAGE
========================= */

.world-card-image {

    position: relative;

    overflow: hidden;
}

.world-card-image img {

    width: 100%;

    height: 220px;

    object-fit: cover;

    transition: transform 1.2s ease;

    /* REMOVE DARK FILTER */

    filter:
        brightness(0.96)
        contrast(1.02)
        saturate(1);
}

.world-card:hover img {

    transform: scale(1.08);
}

/* VERY LIGHT CINEMATIC FADE */

.world-card-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.28),
            rgba(0,0,0,0.02)
        );
}

/* =========================
   CONTENT
========================= */

.world-card-content {

    padding: 24px;

    text-align: left;
}

.world-card-content h3 {

    font-family: 'Cinzel', serif;

    color: #F2D98A;

    font-size: 23px;

    line-height: 1.3;

    margin-bottom: 16px;

    text-shadow:
        0 0 8px rgba(0,0,0,0.25);
}

.world-card-content h4 {

    color: #F2D98A;

    margin-top: 18px;

    margin-bottom: 12px;

    font-family: 'Cinzel', serif;
}

.world-card-content p {

    font-family: 'Lora', serif;

    color: #FFF8EA;

    font-size: 15px;

    line-height: 1.8;

    opacity: 0.95;
}

/* =========================
   EXPAND EFFECT
========================= */

.expand-content {

    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height 0.8s ease,
        opacity 0.6s ease,
        margin-top 0.6s ease;

    margin-top: 0;
}

.expandable-card:hover .expand-content {

    max-height: 650px;

    opacity: 1;

    margin-top: 22px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .world-heading{

        font-size:42px;

        margin-bottom:50px;
    }

    .world-section{

        padding:90px 20px;

        background-attachment: scroll;
    }

    .world-card{

        min-width:300px;

        max-width:300px;
    }
}/* End custom CSS */