/**
 * Commonwealth Games Isle of Man — layout and theme overrides.
 */

:root {
    --iom-navy: #0b1426;
    --iom-navy-mid: #121f3a;
    --iom-red: #d81f26;
    --iom-red-dark: #ff000a;
    --iom-yellow: #f4c400;
    --iom-yellow-soft: #ffe566;
    --iom-white: #ffffff;
    --iom-body: #1a1a1a;
    --iom-font-display: 'AWAKENNING Personal Use';
    --iom-font-body: "Titillium Web", system-ui, sans-serif;
    --iom-header-h: 4.5rem;
}

body {
    font-size: 18px;
}

html,
body {
    overflow-x: hidden;
}

.iom-site {
    font-family: var(--iom-font-body);
    color: var(--iom-body);
    background: var(--iom-white);
    padding-top: 0;
}

/* ——— Header ——— */
.iom-header {
    background: none;
    box-shadow: none;
    /* min-height: var(--iom-header-h); */
    position: relative;
    z-index: 99;
    background-color: #fff;
}

.iom-header-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.iom-header-spacer {
    height: var(--iom-header-h);
}

.iom-brand-mark {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--iom-yellow) 35%, var(--iom-red) 35%, var(--iom-red) 65%, var(--iom-navy-mid) 65%);
    clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}

.iom-brand-mark--light {
    opacity: 0.95;
}

.iom-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.iom-brand-line1 {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--iom-white);
}

.iom-brand-line2 {
    font-family: var(--iom-font-display);
    font-size: 1.35rem;
    letter-spacing: 0.06em;
    color: var(--iom-yellow);
}

.iom-nav .nav-link {
    color: #000 !important;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.08em;
    padding: 0.5rem 0.85rem !important;
    font-family: 'TT Lakes Neue Trial';
    font-weight: bold;
    font-style: italic;
}

.iom-nav .nav-link:hover,
.iom-nav .nav-link:focus {
    color: #ff000a !important;
}

.iom-btn-cta {
    position: relative;
    font-family: var(--iom-font-display);
    letter-spacing: 0.1em;
    font-size: 18px;
    color: var(--iom-white) !important;
    padding: 18px 20px 18px 65px;
    border: none;
    border-radius: 0;
    text-decoration: none;
    /* background: linear-gradient(105deg, var(--iom-red) 0%, var(--iom-red) 48%, #1e3a6e 48%, var(--iom-navy-mid) 100%); */
    /* clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%); */
    transition: transform 0.2s ease, filter 0.2s ease;
    background-repeat: no-repeat;
    background-position: center;
    font-style: italic;
    font-family: 'TT Lakes Neue Trial';
    font-weight: bold;
    font-style: italic;
    letter-spacing: 0;
}

.iom-btn-cta:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    color: var(--iom-white) !important;
}

.iom-nav-toggler {
    border-color: rgba(255, 255, 255, 0.35);
}

/* ——— Slanted buttons ——— */
.btn-slanted {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* transform: skewX(-12deg); */
    border-radius: 0;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-family: 'AWAKENNING Personal Use';
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
}

.btn-slanted>span {
    display: inline-block;
    /* transform: skewX(12deg); */
}

.iom-btn-red {
    background: var(--iom-red);
    color: var(--iom-white) !important;
    padding: 20px 50px;
}

.iom-btn-red:hover {
    background: #ff000a;
    color: var(--iom-white) !important;
}

/* ——— Hero Swiper ——— */
.iom-hero {
    position: relative;
    min-height: 78vh;
    background: var(--iom-navy);
}

.iom-hero .swiper {
    width: 100%;
    height: 100%;
    min-height: 78vh;
}

.iom-hero-slide {
    position: relative;
    min-height: 78vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.iom-hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 20, 38, 0.2) 0%, rgba(11, 20, 38, 0.75) 100%);
    pointer-events: none;
}

.iom-hero-cut {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 48px;
    background: var(--iom-white);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 65%);
    z-index: 2;
    pointer-events: none;
}

.iom-hero-content {
    position: relative;
    z-index: 3;
    padding-bottom: 4rem;
    max-width: 640px;
}

.iom-hero-ribbon {
    display: inline-block;
    background: var(--iom-yellow);
    color: var(--iom-body);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    padding: 0.35rem 1.25rem;
    margin-bottom: 0.75rem;
    clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
}

.iom-hero-title {
    font-family: var(--iom-font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: 0.04em;
    color: var(--iom-white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
}

.iom-hero-title span {
    color: var(--iom-yellow);
}

.iom-hero-lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    max-width: 36rem;
    background: rgba(11, 20, 38, 0.55);
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--iom-red);
}

.iom-hero .swiper-pagination-bullet {
    background: var(--iom-white);
    opacity: 0.45;
}

.iom-hero .swiper-pagination-bullet-active {
    background: var(--iom-yellow);
    opacity: 1;
}

/* ——— About / intro ——— */
.iom-section {
    /* padding-top: 4rem; */
    /* padding-bottom: 4rem; */
    position: relative;
}

.iom-about-collage {
    position: relative;
    min-height: 420px;
}

.iom-about-img {
    /* position: absolute; */
    /* width: 58%; */
    /* box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2); */
}

.iom-about-img img {
    /* width: 100%; */
    /* height: 100%; */
    /* object-fit: cover; */
    /* display: block; */
}

.iom-about-img--1 {
    top: 0;
    left: 0;
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
    height: 55%;
}

.iom-about-img--2 {
    top: 12%;
    right: 0;
    z-index: 2;
    width: 52%;
    height: 48%;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.iom-about-img--3 {
    bottom: 0;
    left: 18%;
    z-index: 3;
    width: 55%;
    height: 42%;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 8% 100%);
}

.iom-heading-display {
    font-family: var(--iom-font-display);
    font-size: clamp(1.75rem, 64px, 64px);
    line-height: 1.05;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--iom-navy);
}

.iom-heading-display .text-highlight {
    color: var(--iom-red);
}

.iom-script-note {
    font-family: Georgia, "Times New Roman", serif;
    /* font-style: italic; */
    font-size: 40px;
    color: #2fa4dd !important;
}

.iom-script-note .link-red {
    color: var(--iom-red);
    font-weight: 600;
    text-decoration: none;
}

.iom-script-note .link-blue {
    color: #1e4b8c;
    font-weight: 600;
    text-decoration: none;
}

/* ——— Get involved ——— */
.iom-involved {
    position: relative;
    background: transparent;
    overflow: hidden;
    position: relative;
}

.iom-involved-main-swiper .swiper-slide {
    position: relative;
    min-height: 520px;
}

.iom-involved-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.iom-involved-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 20, 38, 0.92) 0%, rgba(11, 20, 38, 0.55) 55%, rgba(11, 20, 38, 0.35) 100%);
}

.iom-involved-main {
    position: relative;
    z-index: 2;
    padding-top: 3.5rem;
    padding-bottom: 7rem;
}

.iom-involved-title {
    font-family: var(--iom-font-display);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.iom-involved-title .w {
    color: var(--iom-white);
}

.iom-involved-title .y {
    color: var(--iom-yellow);
}

.iom-involved-desc {
    color: rgba(255, 255, 255, 0.9);
    max-width: 28rem;
    font-size: 1.05rem;
}

.iom-involved-thumbs {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 0 1rem 1.25rem;
}

.iom-involved-thumbs .swiper-slide {
    width: 22%;
    min-width: 140px;
    cursor: pointer;
    opacity: 0.55;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.iom-involved-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    transform: translateY(-4px);
}

.iom-thumb-card {
    background: rgba(0, 0, 0, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.2);
    clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
    overflow: hidden;
}

.iom-thumb-card img {
    width: 100%;
    height: 72px;
    object-fit: cover;
    display: block;
}

.iom-thumb-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--iom-white);
    padding: 0.4rem 0.5rem;
    text-align: center;
    line-height: 1.2;
}

/* ——— Sports ——— */
.iom-sports-heading {
    font-family: var(--iom-font-display);
    font-size: clamp(2rem, 95px, 85px);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--iom-navy);
    line-height: 1;
}

.iom-sport-row {
    margin-bottom: 2rem;
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08); */
}

.iom-sport-img-wrap {
    padding: 0;
    min-height: 220px;
}

.iom-sport-img-wrap img {
    width: 100%;
    height: auto;
    /* min-height: 220px; */
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.iom-sport-body {
    /* background: #f5f5f5; */
    padding: 1.75rem 2rem 1.5rem;
    position: relative;
    /* border: 1px solid #eee; */
    border-left: none;
    position: relative;
    top: 70px;
}

.iom-sport-label {
    display: inline-block;
    background: var(--iom-yellow);
    color: var(--iom-navy);
    font-family: var(--iom-font-display);
    font-size: 42px;
    letter-spacing: 0.08em;
    padding: 0 35px 0 80px;
    margin-bottom: 40px;
    clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
    left: -16%;
    clip-path: polygon(11% 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%);
}

.iom-sport-icon {
    width: auto;
    height: auto;
    margin-bottom: 0.75rem;
    color: var(--iom-navy);
    position: absolute !important;
    top: 40px;
    right: 40px;
}

.iom-sport-icon img {
    height: 70px;
    width: auto;
}

.iom-sport-more {
    position: absolute !important;
    bottom: 20px;
    right: 80px;
}

.iom-sport-more .btn-slanted {
    font-size: 16px;
    padding: 0.35rem 1rem;
    font-family: var(--iom-font-display);
    font-weight: 400;
}

/* ——— Athletes ——— */
.iom-athletes {
    position: relative;
    background: #e9fbff;
    /* background-image: repeating-linear-gradient(-18deg,
            rgba(255, 255, 255, 0.03) 0 2px,
            transparent 2px 14px); */
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    position: relative;
}

.iom-athletes-banner {
    /* display: inline-block; */
    /* background: var(--iom-yellow); */
    /* padding: 0.5rem 1.5rem; */
    /* margin-bottom: 1rem; */
    /* clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%); */
}

.iom-athletes-banner h2 {
    font-family: 'AWAKENNING Personal Use';
    font-size: clamp(2.5rem, 95px, 95px);
    letter-spacing: 0.08em;
    color: #fbc32d;
    margin-bottom: 0;
    line-height: 1;
}

.iom-athletes p {
    color: #000;
    max-width: 28rem;
    margin: 60px 0;
    font-size: 20px;
}

.iom-athletes-photo {
    position: relative;
    z-index: 2;
}

.iom-athletes-photo img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
}

/* ——— Social ——— */
.iom-social {
    padding-top: 100px;
    padding-bottom: 4rem;
    background: #e9fbff;
    /* clip-path: polygon(0% 20%, 100% 0%, 100% 100%, 0 100%); */
}

.iom-social-badge {
    text-align: center;
    margin-bottom: 0;
    margin-top: -272px;
}

.iom-social-fb {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: #1877f2;
    color: var(--iom-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--iom-font-display);
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 8px 24px rgba(24, 119, 242, 0.35);
}

.iom-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 700;
    color: #1877f2;
    font-size: 0.9rem;
}

.iom-social-grid {
    text-align: center;
}

.iom-social-grid img {
    /* width: 100%; */
    /* height: auto; */
    /* object-fit: cover; */
    /* aspect-ratio: 1; */
    /* display: block; */
}

.iom-social-grid .col-6:nth-child(odd) img {
    aspect-ratio: 4 / 5;
}

/* ——— Page hero (inner) ——— */
.iom-page-hero {
    background: linear-gradient(135deg, var(--iom-navy) 0%, var(--iom-navy-mid) 100%);
    padding: 3rem 0 4rem;
    color: var(--iom-white);
}

.iom-page-hero h1 {
    font-family: var(--iom-font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    letter-spacing: 0.06em;
}

/* ——— Footer ——— */
.iom-footer {
    position: relative;
    /* background: var(--iom-navy); */
    padding-top: 180px;
    padding-bottom: 50px;
    background-color: #e9fbff;
    background-position: top;
    background-size: cover;
}

.iom-footer-peak {
    /* height: 36px; */
    /* background: linear-gradient(135deg, var(--iom-navy-mid) 25%, transparent 25%),
        linear-gradient(-135deg, var(--iom-navy-mid) 25%, transparent 25%); */
    /* background-size: 24px 24px; */
    /* opacity: 0.4; */
    /* margin-bottom: 0; */
    width: 100%;
    border-top: 1px solid #dddddd45;
}

.iom-footer-heading {
    font-family: 'AWAKENNING Personal Use';
    font-size: clamp(2rem, 115px, 115px);
    letter-spacing: 0.05em;
    line-height: 1;
}

.iom-contact-icon {
    flex-shrink: 0;
    background-color: #ffffff47;
    margin-top: 0.15rem;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    line-height: 70px;
    text-align: center;
}

.iom-footer-bar {
    background: #34267b;
    /* border-top: 1px solid rgba(255, 255, 255, 0.08); */
}

@media (max-width: 991.98px) {
    .iom-sport-img-wrap img {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        height: auto;
    }

    .iom-sport-body {
        border-left: 1px solid #eee;
    }

    .iom-about-collage {
        min-height: 320px;
        margin-bottom: 2rem;
    }
}


.iom-sport-body::before {
    content: '';
    position: absolute;
    background-color: #f5f5f5;
    top: 0;
    right: 0;
    width: 130%;
    height: 100%;
    z-index: 0;
    clip-path: polygon(23% 0, 100% 0, 100% 100%, 0 100%);
    /* clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%); */
}

.iom-sport-body>* {
    position: relative;
    z-index: 1;
}


.iom-athletes>* {
    position: relative;
    z-index: 1;
}

.iom-athletes-banner-wrap {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translate(0px, calc(-50% - 0px));
}

.iom-athletes::before {
    content: '';
    position: absolute;
    background-color: #fff;
    width: 100%;
    height: 50%;
    z-index: 0;
    top: 0;
    left: 0;
}

.iom-contact-list {
    font-size: 24px;
}

.iom-contact-list div>span,
.iom-contact-list div>a {
    display: inline-block;
}

.iom-contact-list div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.iom-footer-brand {
    margin-bottom: 50px;
}

.iom-footer-bar p,
.iom-footer-bar a {
    font-size: 20px;
    color: #fff !important;
}

.iom-footer-bar a:last-child::before {
    content: '';
    border-left: 1px solid #fff;
    padding-right: 23px;
}

.iom-involved-wrap {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

.iom-involved-wrap h2.iom-heading-display {
    color: #fbc32d;
    font-size: clamp(2.5rem, 95px, 95px);
}

.iom-involved-wrap p {
    color: #fff;
    font-size: 20px;
}


.iom-about-right {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    transform: translateY(-50%);
}

.iom-section .container-fluid {
    padding: 0;
}

.iom-script-note .text-muted {
    color: #2fa4dd !important;
}

section.iom-banner {
    /* box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px; */
    position: relative;
    z-index: 1;
}

.iom-selection-wrap {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
}

.iom-selection-wrap h2 {
    font-family: 'AWAKENNING Personal Use';
    font-size: 75px;
}

.iom-selection-wrap .col-12:first-child h2,
.iom-selection-wrap .col-12:first-child p {
    color: #fff;
}

.iom-selection-wrap p {
    font-size: 20px;
}

.iom-selection-section {
    padding-top: 15px;
}

.page-template-home section.iom-banner {
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
}

/* ——— About template (Mission / What we do / Team) ——— */
.iom-about-template {
    background: var(--iom-white);
}

.iom-about-history {
    padding: 55px 0 35px;
    background: #ffffff;
}

.iom-about-history__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #000;
    background: #fff;
    font-size: 12px;
    font-weight: 600;
}

.iom-about-history__content p {
    font-size: 16px;
    line-height: 1.7;
    color: #000;
}

.iom-about-mission {
    background: #0b1426;
    overflow: hidden;
}

.iom-about-mission__bg img {
    width: 100%;
    height: auto;
    display: block;
}

.iom-about-mission__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    /* align-items: center; */
    /* background: linear-gradient(90deg, rgba(11, 20, 38, 0.88) 0%, rgba(11, 20, 38, 0.55) 55%, rgba(11, 20, 38, 0.1) 100%); */
    padding: 138px 0 0;
}

.iom-about-mission__title {
    font-family: var(--iom-font-display);
    font-size: clamp(2.25rem, 95px, 95px);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fbc32d;
    line-height: 1;
    margin: 0;
}

.iom-about-mission__list {
    margin: 0 0 40px !important;
    padding-left: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
    list-style: none;
}

.iom-about-mission__list li {
    position: relative;
    padding-left: 30px;
}

.iom-about-mission__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--iom-yellow);
    box-shadow: 0 0 0 4px rgba(244, 196, 0, 0.18);
}

.iom-about-mission__list li+li {
    margin-top: 0.6rem;
}

.iom-about-whatwedo {
    padding: 0 0 45px;
    /* background: #ffffff; */
    position: relative;
    z-index: 2;
    margin-top: -16%;
}

.iom-about-whatwedo__photo {
    height: 100%;
    background: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 18px 40px -22px;
}

.iom-about-whatwedo__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.iom-about-whatwedo__photoPlaceholder {
    width: 100%;
    height: 100%;
    min-height: 340px;
    background: linear-gradient(135deg, #e9fbff 0%, #fff 55%);
}

.iom-about-whatwedo__card {
    height: 100%;
    /* background: #ffffff; */
    /* border: 1px solid rgba(0, 0, 0, 0.08); */
    border-radius: 10px;
    padding: 38px 42px;
    /* box-shadow: rgba(0, 0, 0, 0.14) 0px 20px 50px -32px; */
    /* margin-top: -60px; */
    padding-right: 0;
}

.iom-about-whatwedo__title {
    font-family: var(--iom-font-display);
    font-size: clamp(1.75rem, 95px, 95px);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #000;
    margin: 0;
}

.iom-about-whatwedo__lead {
    color: #000;
    font-weight: 600;
}

.iom-about-whatwedo__list {
    margin: 0;
    padding-left: 0;
    color: #000;
    font-size: 18px;
    list-style: none;
}

.iom-about-whatwedo__list li {
    position: relative;
    padding-left: 26px;
}

.iom-about-whatwedo__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--iom-red);
}

.iom-about-whatwedo__list li+li {
    margin-top: 0.55rem;
}

.iom-team {
    padding: 40px 0 80px;
    background: #ffffff;
}

.iom-team__title {
    font-family: var(--iom-font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--iom-navy);
    margin: 0;
}

.iom-team__subtitle {
    color: #000;
    font-size: 16px;
    margin-top: 8px;
}

.iom-team-card {
    background: #f7f7f7;
    border-radius: 0;
    overflow: hidden;
    /* border: 1px solid rgba(0, 0, 0, 0.08); */
    /* box-shadow: rgba(0, 0, 0, 0.14) 0px 20px 50px -34px; */
}

.iom-team-card__img img {
    width: 100%;
    height: auto;
    /* object-fit: cover; */
    /* display: block; */
    /* filter: grayscale(100%); */
}

.iom-team-card:hover .iom-team-card__img img {
    /* filter: grayscale(0%); */
}

.iom-team-card__imgPlaceholder {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #e9fbff 0%, #ffffff 70%);
}

.iom-team-card__body {
    padding: 20px 18px 20px;
}

.iom-team-card__nameplate {
    background: var(--iom-yellow);
    /* clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%); */
    padding: 8px 16px;
    margin-top: -18px;
    position: relative;
    z-index: 2;
    left: -18px;
    display: inline-block;
}

.iom-team-card__name {
    font-family: var(--iom-font-display);
    font-size: 39px;
    /* letter-spacing: 0.06em; */
    text-transform: uppercase;
    color: #000;
    line-height: 1;
}

.iom-team-card__role {
    margin-top: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #000;
}

.iom-team-card__bio p {
    font-size: 13px;
    line-height: 1.6;
    color: #000;
}

@media (max-width: 991.98px) {
    .iom-about-mission__overlay {
        position: relative;
        inset: auto;
        padding: 42px 0;
    }

    .iom-about-whatwedo {
        padding-top: 0;
    }

    .iom-about-whatwedo__card {
        padding: 28px 24px;
        margin-top: 0;
    }

    .iom-team-card__img img,
    .iom-team-card__imgPlaceholder {
        /* height: 200px; */
    }
}

@media (max-width: 575.98px) {
    .iom-about-mission__list {
        font-size: 18px;
    }

    .iom-about-whatwedo__list {
        font-size: 16px;
    }
}

/* ——— News page ——— */
.iom-news {
    padding: 55px 0 85px;
    background: #fff;
}

.iom-news__title {
    font-family: var(--iom-font-display);
    font-size: clamp(1.75rem, 4.5vw, 3.15rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--iom-navy);
}

.iom-news__lead {
    color: rgba(0, 0, 0, 0.7);
    font-size: 18px;
}

.iom-news__header {
    padding-bottom: 16px;
}

.iom-news__list {
    margin-top: 22px;
}

.iom-news-rows {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.iom-news-row {
    display: grid;
    grid-template-columns: 280px 1fr 250px;
    gap: 0;
    background: #f8f6f3;
    /* border: 1px solid rgba(0, 0, 0, 0.12); */
    border-radius: 0;
    overflow: hidden;
    /* box-shadow: rgba(0, 0, 0, 0.14) 0px 22px 60px -44px; */
    position: relative;
    padding: 15px;
}

.iom-news-row__media {
    position: relative;
    display: block;
    text-decoration: none;
    background: #f5f5f5;
}

.iom-news-row__media img {
    width: calc(100% + 19px);
    height: 100%;
    object-fit: cover;
    display: block;
    clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 0 100%);
    position: relative;
    z-index: 1;
}

.iom-news-row__mediaPlaceholder {
    width: 100%;
    height: 100%;
    min-height: 160px;
    background: linear-gradient(135deg, #e9fbff 0%, #ffffff 70%);
}

.iom-news-row__tag {
    position: absolute;
    left: 12px;
    top: 22px;
    background: #ffffff;
    /* border: 1px solid rgba(0, 0, 0, 0.18); */
    border-radius: 999px;
    padding: 2px 14px;
    font-size: 10px;
    /* letter-spacing: 0.14em; */
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 5px;
    padding-left: 10px;
    z-index: 9;
}

.iom-news-row__content {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    padding: 18px 18px 18px;
    /* border-right: 1px solid rgba(0, 0, 0, 0.08); */
    align-items: start;
    padding-bottom: 55px;
}

.iom-news-row__date {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background: #fff;
}

.iom-news-row__day {
    font-family: var(--iom-font-body);
    font-size: 34px;
    letter-spacing: 0.06em;
    color: #000;
}

.iom-news-row__month {
    margin-top: 6px;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.7);
    /* font-family: var(--iom-font-body); */
}

.iom-news-row__title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.iom-news-row__title a {
    text-decoration: none;
    color: #000;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.iom-news-row__excerpt {
    margin: 0 0 12px;
    color: rgba(0, 0, 0, 0.72);
    font-size: 14px;
    line-height: 1.6;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    line-clamp: 2;
}

.iom-news-row__btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.iom-news-row__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    border-radius: 999px;
    padding: 4px 9px;
    border: 1px solid transparent;
}

.iom-news-row__btn--yellow {
    background: var(--iom-yellow);
    color: #000;
}

.iom-news-row__btn--red {
    background: var(--iom-red);
    color: #fff;
}

.iom-news-row__aside {
    padding: 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    /* background: #fff; */
    padding-bottom: 55px;
}

.iom-news-row__shareLabel {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(0, 0, 0, 0.65);
    margin-bottom: 0;
}

.iom-news-row__shareIcons {
    display: flex;
    gap: 5px;
    justify-content: flex-end;
}

.iom-news-row__icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    /* border: 1px solid rgba(0, 0, 0, 0.14); */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    font-weight: 900;
    font-size: 12px;
    background: #397ebb;
    transition: transform 0.15s ease, border-color 0.15s ease;
}

.iom-news-row__icon:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 0, 0, 0.24);
}

.iom-news-row__icon svg {
    width: 13px;
    height: 13px;
    fill: #fff;
}

.iom-news-row__badge {
    width: 44px;
    height: 44px;
    /* border-radius: 999px; */
    /* background: conic-gradient(from 210deg, #1a73e8, #34a853, #fbbc05, #ea4335, #1a73e8); */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* color: #fff; */
    font-weight: 900;
    font-size: 16px;
    /* box-shadow: rgba(0, 0, 0, 0.15) 0px 16px 40px -26px; */
}

.iom-news-pagination {
    margin-top: 34px;
    display: flex;
    justify-content: center;
}

.iom-news-pager {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.iom-news-pager__arrow {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    font-weight: 900;
    background: #fff;
}

.iom-news-pager__arrow.is-disabled {
    opacity: 0.35;
    pointer-events: none;
}

.iom-news-pager__dots {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
}

@media (max-width: 991.98px) {
    .iom-news-row {
        grid-template-columns: 240px 1fr;
    }

    .iom-news-row__aside {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }
}

.iom-news-pager__dot {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    color: #111;
    line-height: 1;
    box-sizing: border-box;
}

.iom-news-pager__dot.is-active {
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
}

.iom-news-pager__dot--ellipsis {
    min-width: auto;
    padding: 0 4px;
    background: transparent;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.35);
}

.iom-news-search__inner {
    display: flex;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 20px 50px -36px;
}

.iom-news-search__input {
    flex: 1 1 auto;
    border: none;
    outline: none;
    padding: 16px 18px;
    font-size: 16px;
    background: transparent;
}

.iom-news-search__btn {
    border: none;
    background: #2fa3dd;
    color: #000;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    /* padding: 0 22px; */
    /* display: inline-flex; */
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
}

.iom-news-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.iom-news-filters__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: #fff;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.iom-news-filters__pill:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 0, 0, 0.22);
}

.iom-news-filters__pill.is-active {
    background: var(--iom-navy);
    border-color: var(--iom-navy);
    color: #fff;
}

.iom-news__grid {
    margin-top: 30px;
}

.iom-news-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: rgba(0, 0, 0, 0.14) 0px 22px 60px -44px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.iom-news-card:hover {
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, 0.18) 0px 28px 70px -48px;
}

.iom-news-card__img {
    position: relative;
    display: block;
    text-decoration: none;
}

.iom-news-card__img img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.iom-news-card__imgPlaceholder {
    width: 100%;
    height: 210px;
    background: linear-gradient(135deg, #e9fbff 0%, #ffffff 70%);
}

.iom-news-card__cat {
    position: absolute;
    left: 14px;
    bottom: 14px;
    background: var(--iom-yellow);
    color: #000;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 12px;
    border-radius: 999px;
}

.iom-news-card__body {
    padding: 18px 18px 20px;
}

.iom-news-card__meta time {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.55);
}

.iom-news-card__title {
    margin: 10px 0 10px;
    font-size: 20px;
    line-height: 1.2;
}

.iom-news-card__title a {
    text-decoration: none;
    color: #000;
    font-weight: 800;
}

.iom-news-card__excerpt {
    margin: 0 0 14px;
    color: rgba(0, 0, 0, 0.72);
    font-size: 15px;
    line-height: 1.6;
}

.iom-news-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.iom-news-card__readmore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    color: #000;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
}

.iom-news-card__readmore:hover {
    border-color: rgba(0, 0, 0, 0.22);
}

.iom-news-share {
    position: relative;
}

.iom-news-share__btn {
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    border-radius: 999px;
    padding: 10px 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    color: #000;
}

.iom-news-share__btn:hover {
    border-color: rgba(0, 0, 0, 0.22);
}

.iom-news-share__menu {
    position: absolute;
    left: 0;
    bottom: calc(100% + 10px);
    min-width: 220px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 14px;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 24px 60px -40px;
    display: none;
    z-index: 20;
}

.iom-news-share__menu a {
    display: block;
    text-decoration: none;
    color: #000;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 12px;
    padding: 10px 10px;
    border-radius: 10px;
}

.iom-news-share__menu a:hover {
    background: rgba(244, 196, 0, 0.2);
}

.iom-news-share:hover .iom-news-share__menu,
.iom-news-share:focus-within .iom-news-share__menu {
    display: block;
}

.iom-news-pagination {
    margin-top: 34px;
    display: flex;
    justify-content: center;
}

.iom-news-pagination ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.iom-news-pagination li {
    margin: 0;
}

.iom-news-pagination .page-numbers {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    text-decoration: none;
    color: #000;
    font-weight: 900;
}

.iom-news-pagination .page-numbers.current {
    background: var(--iom-navy);
    color: #fff;
    border-color: var(--iom-navy);
}

.iom-news-pagination .page-numbers:hover {
    border-color: rgba(0, 0, 0, 0.22);
}

.iom-news-empty {
    padding: 70px 0;
    text-align: center;
}

.iom-news-empty__title {
    font-family: var(--iom-font-display);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

@media (max-width: 575.98px) {
    .iom-news-search__btn {
        /* min-width: 110px; */
        padding: 0 16px;
    }

    .iom-news-row {
        grid-template-columns: 1fr;
    }

    .iom-news-row__content {
        grid-template-columns: 72px 1fr;
        border-right: none;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        padding: 15px 0;
    }

    .iom-news-row__aside {
        flex-direction: row;
        align-items: center;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }
}

/* ——— Sports page ——— */
.iom-section-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

.iom-section-pill__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--iom-red);
}

.iom-section-pill__text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #000;
}

.iom-sports {
    padding: 60px 0 90px;
    background: #fff;
}

.iom-sports__section {
    text-align: center;
    padding: 100px 0px;
}

.iom-sports-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.iom-sport-tile {
    text-decoration: none;
    color: #000;
    display: flex;
    flex-direction: column;
    border-radius: 0;
    overflow: hidden;
    background: #f5f5f5;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 18px 45px -34px;
    /* border: 1px solid rgba(0, 0, 0, 0.08); */
    min-height: 340px;
}

.iom-sport-tile__top {
    flex: 1 1 auto;
    padding: 0px 22px 0px;
    background: #f3f3f3;
    /* margin-bottom: -15px; */
}

.iom-sport-tile__iconWrap {
    /* width: 170px; */
    /* height: 170px; */
    /* margin: 0 auto 14px; */
    /* border-radius: 999px; */
    /* background: #ffffff; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: rgba(0, 0, 0, 0.08) 0px 18px 40px -34px; */
}

.iom-sport-tile__iconWrap img {
    /* width: 88px; */
    /* height: 88px; */
    /* object-fit: contain; */
    /* display: block; */
    width: 100%;
    height: auto;
}

.iom-sport-tile__title {
    font-family: var(--iom-font-display);
    font-size: 28px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.05;
    margin: 0;
    padding: 0 6px;
}

.iom-sport-tile__band {
    position: relative;
    padding: 15px 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* clip-path: polygon(0% 50%, 100% 0%, 100% 100%, 0 100%); */
    /* border-top: 1px solid #fff; */
    padding-right: 0;
}

.iom-sport-tile--red .iom-sport-tile__band {
    /* background: var(--iom-red); */
}

.iom-sport-tile--yellow .iom-sport-tile__band {
    /* background: var(--iom-yellow); */
}

.iom-sport-tile--blue .iom-sport-tile__band {
    /* background: #48b7e3; */
}

.iom-sport-tile__bandText {
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
    color: rgba(0, 0, 0, 0.85);
}

.iom-sport-tile--red .iom-sport-tile__bandText {
    color: rgba(255, 255, 255, 0.92);
}

.iom-sport-tile--blue .iom-sport-tile__bandText {
    color: rgba(255, 255, 255, 0.92);
}

.iom-sport-tile__bandArrow {
    /* width: 34px; */
    /* height: 34px; */
    border-radius: 999px;
    /* background: rgba(255, 255, 255, 0.25); */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.iom-sport-tile__bandArrow img {
    /* width: 16px; */
    /* height: 16px; */
    /* object-fit: contain; */
    display: block;
    /* filter: brightness(0) invert(1); */
}

.iom-sport-tile--yellow .iom-sport-tile__bandArrow img {
    filter: brightness(0);
}

@media (max-width: 991.98px) {
    .iom-sports-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .iom-sports-grid {
        grid-template-columns: 1fr;
    }

    .iom-sport-tile {
        min-height: 0;
    }
}

/* ——— Contact page (Contact Form 7) ——— */
.iom-contact {
    padding: 00px 0 90px;
    /* background: #fff; */
    margin-top: -250px;
    position: relative;
    z-index: 7;
}

.iom-contact__header {
    margin-bottom: 28px;
    margin-top: -60px;
}

.iom-contact__title {
    font-family: var(--iom-font-display);
    font-size: clamp(2.25rem, 6vw, 4.75rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #000;
    line-height: 1;
}

.iom-contact__subtitle {
    color: rgba(0, 0, 0, 0.7);
    font-size: 18px;
}

.iom-contact .wpcf7 form {
    max-width: 980px;
    margin: 0 auto;
}

.iom-contact .wpcf7 p {
    margin: 0 0 18px;
}

.iom-contact .wpcf7 label {
    display: block;
    font-weight: 700;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 8px;
}

.iom-contact .wpcf7-form-control-wrap {
    display: block;
}

.iom-contact .wpcf7 input[type="text"],
.iom-contact .wpcf7 input[type="email"],
.iom-contact .wpcf7 input[type="tel"],
.iom-contact .wpcf7 textarea {
    width: 100%;
    border: unset;
    background: #efefef;
    border-radius: 0;
    padding: 18px 18px;
    outline: none;
    font-size: 15px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 24px 60px -50px;
    padding-right: 40px;
}

.iom-contact .wpcf7 textarea {
    min-height: 190px;
    resize: vertical;
}

/* 2-column layout helper: if CF7 form uses a wrapper with these classes */
.iom-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 26px;
}

.iom-contact-grid .is-full {
    grid-column: 1 / -1;
}

.iom-contact .wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
}

.iom-contact .wpcf7-acceptance label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 13px;
    margin: 0;
}

.iom-contact .wpcf7-acceptance input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
}

.iom-contact .wpcf7-submit {
    background: var(--iom-red);
    border: none;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 18px 28px;
    min-width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.iom-contact .wpcf7-submit:hover {
    background: var(--iom-red-dark);
}

/* Right aligned submit row */
.iom-contact-actions p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.iom-contact-actions .iom-contact-actions__submit {
    margin-left: auto;
}

@media (max-width: 767.98px) {
    .iom-contact-grid {
        grid-template-columns: 1fr;
    }

    .iom-contact-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .iom-contact-actions .iom-contact-actions__submit {
        margin-left: 0;
        width: 100%;
    }

    .iom-contact .wpcf7-submit {
        width: 100%;
    }
}

.iom-sport-tile__band::before,
.iom-sport-tile__band::after {
    content: '';
    background-color: #fff;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0px;
    clip-path: polygon(0% 28%, 100% 0%, 100% 100%, 0 100%);
}

.iom-sport-tile--red .iom-sport-tile__band::after {
    background-color: #e1353c;
}

.iom-sport-tile__band>* {
    position: relative;
    z-index: 1;
}

.iom-sport-tile--yellow .iom-sport-tile__band::after {
    background: var(--iom-yellow);
}

.iom-sport-tile__band::after {
    height: 95%;
}

.iom-sport-tile--blue .iom-sport-tile__band::after {
    background: #48b7e3;
}

.iom-sports__section>.container::before,
.iom-about-history .col-12::before {
    content: '';
    border: 1px solid rgba(0, 0, 0, 0.12);
    height: 1px;
    width: calc(100% - 30px);
    position: absolute;
    left: 15px;
    z-index: 0;
    top: 17px;
}

.iom-sports__section>.container,
.iom-about-history .col-12 {
    position: relative;
}

.iom-about-whatwedo .row {
    background-color: #fff;
    padding: 35px;
    box-shadow: rgba(0, 0, 0, 0.14) 0px 20px 50px -32px;
}

.iom-about-mission-content {
    color: #fff;
}

.page-template-about-page-template section.iom-social {
    clip-path: polygon(0% 20%, 100% 0%, 100% 100%, 0 100%);
    padding-top: 260px;
}

.iom-news-row__share {
    display: flex;
    align-items: center;
    gap: 15px;
}

span.iom-news-row__tag::before {
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--iom-red);
    content: '';
    display: inline-block;
}

.iom-news-bottom {
    background-color: #252525;
    width: calc(100% - 15px);
    position: absolute;
    bottom: 16px;
    text-align: right;
    padding: 8px 50px;
    font-size: 15px;
    right: 0;
}

.iom-news-bottom a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
}

.iom-news-row__btn svg {
    width: 14px;
    height: 14px;
    margin-right: 4px;
}

.iom-news-row__btn--red svg {
    fill: #fff;
}

.iom-news-search__btn svg {
    width: 24px;
    fill: #fff;
}

article-image {
    display: block;
    align-items: center;
}

article-image img {
    margin: 0 auto 60px;
    display: table;
}

article .iom-heading-display {
    font-size: clamp(1.75rem, 44px, 44px);
    font-family: var(--iom-font-body);
}

.iom-contact-grid br {
    display: none;
}

.iom-contact-grid svg {
    position: absolute;
    top: 44px;
    width: 22px;
    right: 10px;
}

.iom-contact-grid>div>p {
    position: relative;
}

.iom-contact .wpcf7-spinner {
    display: none;
}

.iom-contact-top-icon {
    display: table;
    justify-content: center;
    width: 200px;
    margin: 0px auto 0;
    height: 200px;
    text-align: center;
    background-color: #fff;
    border-radius: 50%;
    transform: translateY(-33%);
    padding-top: 27px;
}

.iom-contact__section-inner {
    background-color: #fff;
    padding: 0 0 50px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}