.elementor-9515 .elementor-element.elementor-element-e303dbf{--display:flex;}body.elementor-page-9515:not(.elementor-motion-effects-element-type-background), body.elementor-page-9515 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#020202;}/* Start custom CSS for html, class: .elementor-element-1032d22 *//* =========================================
WER HEADER
========================================= */

.wer-header{

position:relative;

max-width:1200px;

margin:0 auto 60px auto;

min-height:450px;

border-radius:28px;

overflow:hidden;

background:
    linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.65)
    ),
    url('https://rugbyfancentral.com/wp-content/uploads/2026/05/TDP-Z-ONYX-LEGACY-CUP-1.jpg.webp');

background-size:cover;

background-position:center center;

background-repeat:no-repeat;

display:flex;

align-items:center;

justify-content:center;


}

.wer-header-content{

max-width:850px;

text-align:center;

padding:60px 30px;

position:relative;

z-index:2;

}

.wer-header h1{

font-family:'Oswald',sans-serif;

font-size:64px;

line-height:1.1;

margin-bottom:25px;

color:#ffffff;

text-shadow:0 4px 12px rgba(0,0,0,.6);

}

.wer-intro{

font-size:20px;

line-height:1.8;

color:#e2e8f0;

max-width:800px;

margin:0 auto 30px auto;

text-shadow:0 2px 8px rgba(0,0,0,.5);

}

.last-updated{

display:inline-block;

background:#f97316;

color:#ffffff;

padding:10px 18px;

border-radius:999px;

font-size:14px;

font-weight:700;

text-transform:uppercase;

letter-spacing:.5px;

}

/* MOBILE */

@media(max-width:768px){

.wer-header{

    min-height:380px;

}

.wer-header h1{

    font-size:42px;

}

.wer-intro{

    font-size:17px;

    line-height:1.7;

}

}
.elementor-nav-menu--dropdown,
.elementor-nav-menu,
.elementor-sticky--active{
z-index:99999 !important;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-82f30ee *//* =========================================
SECTION 2 — WER RESOURCE HUB
========================================= */

.wer-resource-hub{
    max-width:1200px;
    margin:0 auto 60px auto;
}

.hub-title{
    font-family:'Oswald',sans-serif;
    font-size:42px;
    text-align:center;
    margin-bottom:30px;
}

.hub-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.hub-card{
    background:linear-gradient(
        145deg,
        #1e293b,
        #111827
    );
    border-radius:20px;
    padding:30px;
    border:1px solid rgba(255,255,255,.05);
    text-decoration:none;
    color:white;
    transition:.3s ease;
}

a.hub-card:hover{
    transform:translateY(-5px);
    background:linear-gradient(
        145deg,
        #f97316,
        #ea580c
    );
}

.hub-icon{
    font-size:36px;
    margin-bottom:15px;
}

.hub-name{
    font-family:'Oswald',sans-serif;
    font-size:26px;
    margin-bottom:12px;
}

.hub-description{
    color:#cbd5e1;
    font-size:15px;
    line-height:1.6;
}

a.hub-card:hover .hub-description{
    color:white;
}

/* =========================================
COMING SOON CARDS
========================================= */

.hub-card-coming-soon{
    position:relative;
}

.coming-soon-badge{
    display:inline-block;
    margin-top:18px;
    padding:6px 14px;
    border-radius:999px;
    background:#f97316;
    color:white;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
}

/* =========================================
MOBILE
========================================= */

@media(max-width:768px){

    .hub-grid{
        grid-template-columns:1fr;
    }

    .hub-title{
        font-size:34px;
    }

    .hub-name{
        font-size:22px;
    }

}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-8745cde *//* =====================================
   WER Upcoming Fixtures
===================================== */

.upcoming-fixtures{
    margin:70px 0;
}

.upcoming-fixtures .section-header{
    text-align:center;
    margin-bottom:40px;
}

.upcoming-fixtures .section-header h2{
    font-size:56px;
    font-weight:800;
    line-height:1;
    color:#fff;
    margin:0 0 10px;
}

.upcoming-fixtures .section-subtitle{
    color:#777;
    font-size:18px;
    margin:0;
}

/* =====================================
   Fixtures Grid
===================================== */

.fixtures-grid{
    display:grid;
    grid-template-columns:
        repeat(
            auto-fit,
            minmax(320px,1fr)
        );
    gap:25px;
}

/* =====================================
   Fixture Card
===================================== */

.upcoming-card{

    display:block;

    text-decoration:none;

    color:inherit;

    background:#f5f5f5;

    border-radius:22px;

    padding:28px;

    border-top:4px solid #ff6200;

    box-shadow:
        0 8px 24px rgba(0,0,0,.10);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.upcoming-card:hover{

    transform:translateY(-6px);

    box-shadow:
        0 16px 36px rgba(0,0,0,.15);
}

.upcoming-card:visited{
    color:inherit;
}

.upcoming-card:focus{
    color:inherit;
    text-decoration:none;
}

/* =====================================
   Date Badge
===================================== */

.fixture-date{

    display:inline-block;

    background:#ff6200;

    color:#fff;

    padding:8px 16px;

    border-radius:999px;

    font-size:14px;

    font-weight:700;

    margin-bottom:25px;
}

/* =====================================
   Teams
===================================== */

.fixture-teams{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    margin-bottom:25px;
}

.fixture-team{

    flex:1;

    text-align:center;
}

.fixture-team img{

    width:95px;

    height:95px;

    object-fit:contain;

    margin-bottom:12px;

    transition:.3s ease;
}

.upcoming-card:hover .fixture-team img{
    transform:scale(1.05);
}

.fixture-team-name{

    font-size:16px;

    font-weight:700;

    color:#111;

    line-height:1.2;

    transition:.3s ease;
}

.upcoming-card:hover .fixture-team-name{
    color:#ff6200;
}

/* =====================================
   VS
===================================== */

.fixture-vs{

    font-size:22px;

    font-weight:900;

    color:#ff6200;

    min-width:50px;

    text-align:center;
}

/* =====================================
   Match Time
===================================== */

.fixture-time{

    text-align:center;

    font-size:22px;

    font-weight:700;

    color:#111;

    margin-bottom:12px;
}

.fixture-timezone{

    color:#ff6200;

    font-weight:800;

    margin-left:4px;
}

/* =====================================
   Venue
===================================== */

.fixture-venue{

    text-align:center;

    font-size:15px;

    color:#666;

    line-height:1.5;
}

/* =====================================
   Mobile
===================================== */

@media (max-width:767px){

    .upcoming-fixtures .section-header h2{
        font-size:38px;
    }

    .fixtures-grid{
        grid-template-columns:1fr;
    }

    .fixture-team img{
        width:80px;
        height:80px;
    }

    .fixture-team-name{
        font-size:14px;
    }

    .fixture-vs{
        font-size:18px;
    }

    .fixture-time{
        font-size:18px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e73ff7d */.usa-results{
    max-width:1200px;
    margin:0 auto;
    padding:20px;
}

.results-title{
    text-align:center;
    color:#ffffff;
    font-size:42px;
    margin-bottom:30px;
    font-weight:700;
}

.results-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.result-card{
    background:#f5f5f5;
    border:3px solid #BF0D3E;
    border-radius:20px;
    padding:20px;
    text-align:center;
}

.date-pill{
    display:inline-block;
    background:#BF0D3E;
    color:#fff;
    padding:8px 16px;
    border-radius:999px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.match-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:20px 0;
}

.team{
    width:30%;
    color:#111;
    font-size:14px;
    font-weight:600;
}

.flag{
    font-size:42px;
    margin-bottom:8px;
}

.score{
    width:40%;
    font-size:38px;
    font-weight:800;
    color:#002868;
}

.location{
    color:#BF0D3E;
    font-size:14px;
    font-weight:700;
}

/* Tablet */
@media (max-width:1024px){
    .results-grid{
        grid-template-columns:1fr;
    }

    .result-card{
        max-width:500px;
        margin:0 auto;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-020ae52 *//* =========================================
SECTION 9 — FAQ
========================================= */

.wer-faq{
max-width:1200px;
margin:0 auto 80px auto;
}

.faq-badge{
display:inline-block;
background:#f97316;
color:white;
padding:8px 16px;
border-radius:999px;
font-size:14px;
font-weight:700;
text-transform:uppercase;
letter-spacing:.5px;
margin-bottom:15px;
}

.faq-container{
display:flex;
flex-direction:column;
gap:16px;
}

.faq-item{
background:linear-gradient(
145deg,
#1e293b,
#111827
);
border-radius:20px;
border:1px solid rgba(255,255,255,.05);
overflow:hidden;
}

.faq-question{
list-style:none;
cursor:pointer;
padding:24px;
color:#fff;
font-family:'Oswald',sans-serif;
font-size:24px;
position:relative;
}

.faq-question::-webkit-details-marker{
display:none;
}

.faq-question::after{
content:"+";
position:absolute;
right:24px;
top:50%;
transform:translateY(-50%);
color:#f97316;
font-size:30px;
font-weight:700;
}

.faq-item[open] .faq-question::after{
content:"−";
}

.faq-answer{
padding:0 24px 24px;
}

.faq-answer p{
color:#cbd5e1;
line-height:1.8;
margin:0;
}

.faq-item a{
color:#f97316;
font-weight:600;
text-decoration:none;
}

.faq-item a:hover{
color:#fb923c;
text-decoration:underline;
}

@media(max-width:768px){

```
.faq-question{
    font-size:20px;
    padding:20px;
}

.faq-answer{
    padding:0 20px 20px;
}
```

}/* End custom CSS */