/* ============================================================
   YDC THEATRE – UDOLO WANGA
   FLAGSHIP PROGRAMME PAGE
   ============================================================ */

.ydc-udolo-page {

    --udolo-green: #23b580;
    --udolo-green-dark: #16865e;
    --udolo-black: #000000;
    --udolo-grey: #969090;
    --udolo-text: #222222;
    --udolo-muted: #666666;
    --udolo-light: #f5f8f6;
    --udolo-white: #ffffff;
    --udolo-border: #e1e7e4;

    width: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    color: var(--udolo-text);

    background: #ffffff;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    line-height: 1.6;

    overflow: hidden;

    position: relative;
}


/* ============================================================
   RESET
   ============================================================ */

.ydc-udolo-page *,
.ydc-udolo-page *::before,
.ydc-udolo-page *::after {
    box-sizing: border-box;
}

.ydc-udolo-page img {
    max-width: 100%;
    display: block;
}

.ydc-udolo-page a {
    text-decoration: none;
}

.ydc-udolo-page h1,
.ydc-udolo-page h2,
.ydc-udolo-page h3,
.ydc-udolo-page p {
    margin-top: 0;
}

.ydc-udolo-page section {
    margin: 0;
}


/* ============================================================
   CONTAINER
   ============================================================ */

.ydc-udolo-page .ydcu-container {

    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    padding-left: 7%;
    padding-right: 7%;
}


/* ============================================================
   KICKER
   ============================================================ */

.ydc-udolo-page .ydcu-kicker {

    color: var(--udolo-green);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 18px;
}

.ydc-udolo-page .ydcu-kicker::before {

    content: "";

    display: inline-block;

    width: 38px;
    height: 2px;

    margin-right: 12px;

    vertical-align: middle;

    background: var(--udolo-green);
}


/* ============================================================
   HERO
   ============================================================ */

.ydc-udolo-page .ydcu-hero {

    min-height: 760px;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: #000000;
}

.ydc-udolo-page .ydcu-hero-image {

    position: absolute;

    inset: 0;

    z-index: 0;
}

.ydc-udolo-page .ydcu-hero-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}

.ydc-udolo-page .ydcu-hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.88) 0%,
            rgba(0,0,0,.70) 42%,
            rgba(0,0,0,.20) 100%
        );
}

.ydc-udolo-page .ydcu-hero .ydcu-container {

    position: relative;

    z-index: 3;
}

.ydc-udolo-page .ydcu-hero-content {

    max-width: 800px;

    padding-top: 110px;
    padding-bottom: 110px;
}

.ydc-udolo-page .ydcu-hero .ydcu-eyebrow {

    color: var(--udolo-green);

    font-size: 13px;

    font-weight: 900;

    letter-spacing: 4px;

    margin-bottom: 22px;
}

.ydc-udolo-page .ydcu-hero h1 {

    margin: 0 0 25px 0 !important;

    color: #ffffff !important;

    font-size:
        clamp(65px, 10vw, 135px) !important;

    line-height: .82 !important;

    letter-spacing: -7px !important;

    font-weight: 900 !important;
}

.ydc-udolo-page .ydcu-hero h1 span {

    color: var(--udolo-green) !important;

    display: block;
}

.ydc-udolo-page .ydcu-hero-tagline {

    margin-bottom: 20px !important;

    color: #ffffff !important;

    font-size:
        clamp(25px, 3vw, 40px) !important;

    line-height: 1.1 !important;

    font-weight: 800 !important;
}

.ydc-udolo-page .ydcu-hero-description {

    max-width: 720px;

    margin-bottom: 35px !important;

    color: rgba(255,255,255,.84) !important;

    font-size: 18px !important;

    line-height: 1.75 !important;
}


/* ============================================================
   BUTTONS
   ============================================================ */

.ydc-udolo-page .ydcu-hero-buttons,
.ydc-udolo-page .ydcu-cta-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;
}

.ydc-udolo-page .ydcu-btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    padding: 15px 27px;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 800;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease;
}

.ydc-udolo-page .ydcu-btn span {

    font-size: 20px;

    line-height: 1;
}

.ydc-udolo-page .ydcu-btn:hover {

    transform: translateY(-4px);
}

.ydc-udolo-page .ydcu-btn-green {

    background: var(--udolo-green);

    color: #ffffff !important;
}

.ydc-udolo-page .ydcu-btn-green:hover {

    background: #ffffff;

    color: #000000 !important;
}

.ydc-udolo-page .ydcu-btn-white {

    background: #ffffff;

    color: #000000 !important;
}

.ydc-udolo-page .ydcu-btn-white:hover {

    background: var(--udolo-green);

    color: #ffffff !important;
}

.ydc-udolo-page .ydcu-btn-black {

    background: #000000;

    color: #ffffff !important;
}

.ydc-udolo-page .ydcu-btn-black:hover {

    background: #ffffff;

    color: #000000 !important;
}

.ydc-udolo-page .ydcu-btn-outline-white {

    border: 1px solid rgba(255,255,255,.6);

    color: #ffffff !important;

    background: transparent;
}

.ydc-udolo-page .ydcu-btn-outline-white:hover {

    background: #ffffff;

    color: #000000 !important;
}


/* ============================================================
   HERO MARK
   ============================================================ */

.ydc-udolo-page .ydcu-hero-mark {

    position: absolute;

    right: 7%;

    bottom: 70px;

    z-index: 4;

    text-align: right;

    opacity: .9;
}

.ydc-udolo-page .ydcu-hero-mark strong {

    display: block;

    color: transparent;

    font-size: 90px;

    line-height: .8;

    font-weight: 900;

    -webkit-text-stroke:
        2px rgba(255,255,255,.35);
}

.ydc-udolo-page .ydcu-hero-mark span {

    display: block;

    color: var(--udolo-green);

    font-size: 18px;

    font-weight: 900;

    letter-spacing: 8px;
}


/* ============================================================
   GENERAL SECTION
   ============================================================ */

.ydc-udolo-page .ydcu-section {

    padding-top: 105px;
    padding-bottom: 105px;
}


/* ============================================================
   INTRO
   ============================================================ */

.ydc-udolo-page .ydcu-intro {

    background: #ffffff;
}

.ydc-udolo-page .ydcu-intro-grid {

    display: grid;

    grid-template-columns:
        minmax(0, .9fr)
        minmax(0, 1.1fr);

    gap: 75px;

    align-items: center;
}

.ydc-udolo-page .ydcu-intro-image {

    height: 610px;

    overflow: hidden;

    border-radius: 28px;

    box-shadow:
        0 25px 65px rgba(0,0,0,.12);
}

.ydc-udolo-page .ydcu-intro-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}

.ydc-udolo-page .ydcu-intro-image:hover img {

    transform: scale(1.04);
}

.ydc-udolo-page .ydcu-intro-content {

    max-width: 700px;
}

.ydc-udolo-page .ydcu-intro-content h2,
.ydc-udolo-page .ydcu-section-heading h2,
.ydc-udolo-page .ydcu-journey-intro h2,
.ydc-udolo-page .ydcu-impact-content h2,
.ydc-udolo-page .ydcu-international h2 {

    margin: 0 0 25px 0 !important;

    color: #000000 !important;

    font-size:
        clamp(40px, 5vw, 68px) !important;

    line-height: 1 !important;

    letter-spacing: -3px !important;

    font-weight: 900 !important;
}

.ydc-udolo-page h2 span {

    color: var(--udolo-green) !important;
}

.ydc-udolo-page .ydcu-intro-content p,
.ydc-udolo-page .ydcu-impact-content p,
.ydc-udolo-page .ydcu-international p {

    color: #555555 !important;

    font-size: 17px !important;

    line-height: 1.85 !important;

    margin-bottom: 20px !important;
}

.ydc-udolo-page .ydcu-intro-content .ydcu-lead {

    color: #222222 !important;

    font-size: 20px !important;

    line-height: 1.7 !important;

    font-weight: 500 !important;
}


/* ============================================================
   STATEMENT
   ============================================================ */

.ydc-udolo-page .ydcu-statement {

    padding: 120px 0;

    background:
        linear-gradient(
            135deg,
            #23b580 0%,
            #178b62 100%
        );
}

.ydc-udolo-page .ydcu-statement-inner {

    max-width: 950px;
}

.ydc-udolo-page .ydcu-statement .ydcu-kicker {

    color: #000000;
}

.ydc-udolo-page .ydcu-statement .ydcu-kicker::before {

    background: #000000;
}

.ydc-udolo-page .ydcu-statement h2 {

    margin: 0 0 20px 0 !important;

    color: #ffffff !important;

    font-size:
        clamp(42px, 6vw, 80px) !important;

    line-height: .98 !important;

    letter-spacing: -4px !important;

    font-weight: 900 !important;
}

.ydc-udolo-page .ydcu-statement h2 span {

    color: #000000 !important;
}

.ydc-udolo-page .ydcu-statement p {

    margin: 0 !important;

    color: rgba(255,255,255,.9) !important;

    font-size: 22px !important;
}


/* ============================================================
   VISUAL STORY
   ============================================================ */

.ydc-udolo-page .ydcu-visual-story {

    padding-top: 80px;
    padding-bottom: 80px;

    background: #ffffff;
}

.ydc-udolo-page .ydcu-visual-grid {

    display: grid;

    grid-template-columns:
        1.35fr
        .65fr;

    gap: 18px;

    height: 650px;
}

.ydc-udolo-page .ydcu-visual-large,
.ydc-udolo-page .ydcu-visual-stack img {

    overflow: hidden;

    border-radius: 22px;
}

.ydc-udolo-page .ydcu-visual-large img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.ydc-udolo-page .ydcu-visual-stack {

    display: grid;

    grid-template-rows: 1fr 1fr;

    gap: 18px;
}

.ydc-udolo-page .ydcu-visual-stack img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* ============================================================
   APPROACH
   ============================================================ */

.ydc-udolo-page .ydcu-approach {

    background: var(--udolo-light);
}

.ydc-udolo-page .ydcu-section-heading {

    max-width: 820px;

    margin-bottom: 55px;
}

.ydc-udolo-page .ydcu-section-heading > p {

    color: #666666 !important;

    font-size: 18px !important;

    line-height: 1.75 !important;
}

.ydc-udolo-page .ydcu-approach-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0,1fr));

    gap: 20px;
}

.ydc-udolo-page .ydcu-approach-card {

    min-height: 245px;

    padding: 32px;

    background: #ffffff;

    border:
        1px solid var(--udolo-border);

    border-radius: 20px;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.ydc-udolo-page .ydcu-approach-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 20px 45px rgba(0,0,0,.08);
}

.ydc-udolo-page .ydcu-approach-card > span,
.ydc-udolo-page .ydcu-components article > span {

    color: var(--udolo-green);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2px;
}

.ydc-udolo-page .ydcu-approach-card h3,
.ydc-udolo-page .ydcu-components h3 {

    margin: 18px 0 10px 0 !important;

    color: #000000 !important;

    font-size: 23px !important;

    font-weight: 900 !important;
}

.ydc-udolo-page .ydcu-approach-card p,
.ydc-udolo-page .ydcu-components p {

    margin: 0 !important;

    color: #666666 !important;

    font-size: 15px !important;

    line-height: 1.75 !important;
}


/* ============================================================
   JOURNEY
   ============================================================ */

.ydc-udolo-page .ydcu-journey {

    background: #ffffff;
}

.ydc-udolo-page .ydcu-journey-grid {

    display: grid;

    grid-template-columns:
        .8fr
        1.2fr;

    gap: 90px;
}

.ydc-udolo-page .ydcu-journey-intro {

    position: sticky;

    top: 80px;

    align-self: start;
}

.ydc-udolo-page .ydcu-timeline {

    position: relative;
}

.ydc-udolo-page .ydcu-timeline::before {

    content: "";

    position: absolute;

    left: 20px;

    top: 15px;
    bottom: 15px;

    width: 2px;

    background: var(--udolo-border);
}

.ydc-udolo-page .ydcu-timeline-item {

    position: relative;

    display: grid;

    grid-template-columns: 42px 1fr;

    gap: 24px;

    margin-bottom: 48px;
}

.ydc-udolo-page .ydcu-timeline-item:last-child {

    margin-bottom: 0;
}

.ydc-udolo-page .ydcu-timeline-item > strong {

    position: relative;

    z-index: 2;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--udolo-green);

    color: #ffffff;

    font-size: 12px;
}

.ydc-udolo-page .ydcu-timeline-item span {

    color: var(--udolo-green);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;
}

.ydc-udolo-page .ydcu-timeline-item h3 {

    margin: 7px 0 10px 0 !important;

    color: #000000 !important;

    font-size: 25px !important;

    font-weight: 900 !important;
}

.ydc-udolo-page .ydcu-timeline-item p {

    margin: 0 !important;

    color: #666666 !important;

    font-size: 15px !important;

    line-height: 1.75 !important;
}


/* ============================================================
   COMPONENTS
   ============================================================ */

.ydc-udolo-page .ydcu-components {

    background: #000000;
}

.ydc-udolo-page .ydcu-components .ydcu-kicker {

    color: var(--udolo-green);
}

.ydc-udolo-page .ydcu-components h2 {

    color: #ffffff !important;

    margin: 0 !important;

    font-size:
        clamp(40px, 5vw, 65px) !important;

    line-height: 1 !important;

    letter-spacing: -3px !important;

    font-weight: 900 !important;
}

.ydc-udolo-page .ydcu-components-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0,1fr));

    gap: 1px;

    margin-top: 55px;

    background: #292929;
}

.ydc-udolo-page .ydcu-components article {

    min-height: 260px;

    padding: 32px;

    background: #000000;
}

.ydc-udolo-page .ydcu-components h3 {

    color: #ffffff !important;
}

.ydc-udolo-page .ydcu-components p {

    color: #999999 !important;
}


/* ============================================================
   IMAGE FEATURE
   ============================================================ */

.ydc-udolo-page .ydcu-image-feature {

    position: relative;

    min-height: 600px;

    display: flex;

    align-items: center;

    overflow: hidden;
}

.ydc-udolo-page .ydcu-image-feature-image {

    position: absolute;

    inset: 0;
}

.ydc-udolo-page .ydcu-image-feature-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.ydc-udolo-page .ydcu-image-feature-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.85),
            rgba(0,0,0,.25)
        );
}

.ydc-udolo-page .ydcu-image-feature .ydcu-container {

    position: relative;

    z-index: 2;
}

.ydc-udolo-page .ydcu-image-feature-content {

    max-width: 850px;
}

.ydc-udolo-page .ydcu-image-feature h2 {

    margin: 0 0 15px 0 !important;

    color: #ffffff !important;

    font-size:
        clamp(45px, 6vw, 80px) !important;

    line-height: .95 !important;

    letter-spacing: -4px !important;

    font-weight: 900 !important;
}

.ydc-udolo-page .ydcu-image-feature h2 span {

    color: var(--udolo-green) !important;
}

.ydc-udolo-page .ydcu-image-feature p {

    margin: 0 !important;

    color: #ffffff !important;

    font-size: 24px !important;

    font-weight: 700;
}


/* ============================================================
   IMPACT
   ============================================================ */

.ydc-udolo-page .ydcu-impact {

    background: #ffffff;
}

.ydc-udolo-page .ydcu-impact-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: center;
}

.ydc-udolo-page .ydcu-impact-image {

    height: 570px;

    overflow: hidden;

    border-radius: 25px;
}

.ydc-udolo-page .ydcu-impact-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* ============================================================
   FESTIVAL
   ============================================================ */

.ydc-udolo-page .ydcu-festival {

    background: var(--udolo-light);
}

.ydc-udolo-page .ydcu-festival-header {

    max-width: 900px;

    margin-bottom: 55px;
}

.ydc-udolo-page .ydcu-festival-header h2 {

    margin: 0 0 20px 0 !important;

    color: #000000 !important;

    font-size:
        clamp(40px, 5vw, 68px) !important;

    line-height: .98 !important;

    letter-spacing: -3px !important;

    font-weight: 900 !important;
}

.ydc-udolo-page .ydcu-festival-header p {

    margin: 0 !important;

    color: #666666 !important;

    font-size: 18px !important;

    line-height: 1.8 !important;
}

.ydc-udolo-page .ydcu-festival-grid {

    display: grid;

    grid-template-columns:
        1.1fr .9fr;

    gap: 55px;

    align-items: stretch;
}

.ydc-udolo-page .ydcu-festival-image {

    min-height: 550px;

    overflow: hidden;

    border-radius: 25px;
}

.ydc-udolo-page .ydcu-festival-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.ydc-udolo-page .ydcu-festival-points {

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.ydc-udolo-page .ydcu-festival-points > div {

    padding: 22px 0;

    border-bottom:
        1px solid var(--udolo-border);
}

.ydc-udolo-page .ydcu-festival-points strong {

    display: block;

    margin-bottom: 5px;

    color: var(--udolo-green);

    font-size: 12px;

    letter-spacing: 2px;
}

.ydc-udolo-page .ydcu-festival-points span {

    color: #555555;

    font-size: 16px;
}


/* ============================================================
   INTERNATIONAL
   ============================================================ */

.ydc-udolo-page .ydcu-international {

    background: #ffffff;
}

.ydc-udolo-page .ydcu-international-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 90px;

    align-items: center;
}

.ydc-udolo-page .ydcu-country-list {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 14px;
}

.ydc-udolo-page .ydcu-country-list > div {

    padding: 30px;

    min-height: 150px;

    border:
        1px solid var(--udolo-border);

    border-radius: 18px;

    background: var(--udolo-light);
}

.ydc-udolo-page .ydcu-country-list strong {

    display: block;

    color: var(--udolo-green);

    font-size: 12px;

    margin-bottom: 18px;
}

.ydc-udolo-page .ydcu-country-list span {

    color: #000000;

    font-size: 17px;

    font-weight: 900;

    letter-spacing: 1px;
}


/* ============================================================
   GALLERY
   ============================================================ */

.ydc-udolo-page .ydcu-gallery {

    padding: 100px 0;

    background: #f4f6f5;
}

.ydc-udolo-page .ydcu-gallery-heading {

    margin-bottom: 45px;
}

.ydc-udolo-page .ydcu-gallery-heading h2 {

    margin: 0 !important;

    color: #000000 !important;

    font-size:
        clamp(40px, 5vw, 65px) !important;

    line-height: 1 !important;

    letter-spacing: -3px !important;

    font-weight: 900 !important;
}

.ydc-udolo-page .ydcu-gallery-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    grid-auto-rows: 260px;

    gap: 16px;
}

.ydc-udolo-page .ydcu-gallery-item {

    overflow: hidden;

    border-radius: 20px;
}

.ydc-udolo-page .ydcu-gallery-item img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.ydc-udolo-page .ydcu-gallery-item:hover img {

    transform: scale(1.05);
}

.ydc-udolo-page .ydcu-gallery-wide {

    grid-column:
        span 2;
}


/* ============================================================
   CREDIBILITY
   ============================================================ */

.ydc-udolo-page .ydcu-credibility {

    background: #ffffff;
}

.ydc-udolo-page .ydcu-credibility-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 90px;

    align-items: center;
}

.ydc-udolo-page .ydcu-credibility-list > div {

    padding: 22px 0;

    border-bottom:
        1px solid var(--udolo-border);
}

.ydc-udolo-page .ydcu-credibility-list strong {

    display: inline-block;

    min-width: 120px;

    color: var(--udolo-green);

    font-size: 12px;

    letter-spacing: 2px;
}

.ydc-udolo-page .ydcu-credibility-list span {

    color: #555555;

    font-size: 15px;
}


/* ============================================================
   FINAL IMAGE
   ============================================================ */

.ydc-udolo-page .ydcu-final-image {

    position: relative;

    min-height: 620px;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;
}

.ydc-udolo-page .ydcu-final-image > img {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.ydc-udolo-page .ydcu-final-overlay {

    position: absolute;

    inset: 0;

    background:
        rgba(0,0,0,.68);
}

.ydc-udolo-page .ydcu-final-content {

    position: relative;

    z-index: 2;

    max-width: 900px;

    padding: 40px;
}

.ydc-udolo-page .ydcu-final-content .ydcu-kicker {

    color: var(--udolo-green);
}

.ydc-udolo-page .ydcu-final-content h2 {

    margin: 0 !important;

    color: #ffffff !important;

    font-size:
        clamp(45px, 7vw, 90px) !important;

    line-height: .95 !important;

    letter-spacing: -5px !important;

    font-weight: 900 !important;
}

.ydc-udolo-page .ydcu-final-content h2 span {

    color: var(--udolo-green) !important;
}


/* ============================================================
   CTA
   ============================================================ */

.ydc-udolo-page .ydcu-cta {

    margin: 0 5% 45px;

    padding: 90px 7%;

    border-radius: 30px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #23b580,
            #188e64
        );

    box-shadow:
        0 25px 60px rgba(35,181,128,.20);
}

.ydc-udolo-page .ydcu-cta-content {

    max-width: 850px;

    margin: 0 auto;
}

.ydc-udolo-page .ydcu-cta .ydcu-kicker {

    color: #000000;
}

.ydc-udolo-page .ydcu-cta .ydcu-kicker::before {

    background: #000000;
}

.ydc-udolo-page .ydcu-cta h2 {

    margin: 0 0 20px 0 !important;

    color: #ffffff !important;

    font-size:
        clamp(42px, 6vw, 75px) !important;

    line-height: .95 !important;

    letter-spacing: -4px !important;

    font-weight: 900 !important;
}

.ydc-udolo-page .ydcu-cta h2 span {

    color: #000000 !important;
}

.ydc-udolo-page .ydcu-cta p {

    max-width: 720px;

    margin:
        0 auto 30px auto !important;

    color: rgba(255,255,255,.9) !important;

    font-size: 17px !important;

    line-height: 1.7 !important;
}

.ydc-udolo-page .ydcu-cta-buttons {

    justify-content: center;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1100px) {

    .ydc-udolo-page .ydcu-container {

        padding-left: 5%;
        padding-right: 5%;
    }

    .ydc-udolo-page .ydcu-hero {

        min-height: 680px;
    }

    .ydc-udolo-page .ydcu-hero-mark {

        right: 5%;
    }

    .ydc-udolo-page .ydcu-approach-grid {

        grid-template-columns:
            repeat(2,1fr);
    }

    .ydc-udolo-page .ydcu-components-grid {

        grid-template-columns:
            repeat(2,1fr);
    }

    .ydc-udolo-page .ydcu-gallery-grid {

        grid-template-columns:
            repeat(2,1fr);
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 700px) {

    .ydc-udolo-page .ydcu-container {

        padding-left: 22px;
        padding-right: 22px;
    }

    .ydc-udolo-page .ydcu-hero {

        min-height: 700px;

        align-items: flex-end;
    }

    .ydc-udolo-page .ydcu-hero-overlay {

        background:
            linear-gradient(
                0deg,
                rgba(0,0,0,.94),
                rgba(0,0,0,.30)
            );
    }

    .ydc-udolo-page .ydcu-hero-content {

        padding-top: 100px;
        padding-bottom: 70px;
    }

    .ydc-udolo-page .ydcu-hero h1 {

        font-size: 68px !important;

        letter-spacing: -4px !important;
    }

    .ydc-udolo-page .ydcu-hero-tagline {

        font-size: 25px !important;
    }

    .ydc-udolo-page .ydcu-hero-description {

        font-size: 16px !important;
    }

    .ydc-udolo-page .ydcu-hero-mark {

        display: none;
    }

    .ydc-udolo-page .ydcu-section {

        padding-top: 70px;
        padding-bottom: 70px;
    }

    .ydc-udolo-page .ydcu-intro-grid,
    .ydc-udolo-page .ydcu-impact-grid,
    .ydc-udolo-page .ydcu-festival-grid,
    .ydc-udolo-page .ydcu-international-grid,
    .ydc-udolo-page .ydcu-credibility-grid,
    .ydc-udolo-page .ydcu-journey-grid {

        grid-template-columns: 1fr;

        gap: 40px;
    }

    .ydc-udolo-page .ydcu-intro-image {

        height: 420px;
    }

    .ydc-udolo-page .ydcu-visual-grid {

        height: auto;

        grid-template-columns: 1fr;
    }

    .ydc-udolo-page .ydcu-visual-large {

        height: 420px;
    }

    .ydc-udolo-page .ydcu-visual-stack {

        height: 500px;
    }

    .ydc-udolo-page .ydcu-approach-grid {

        grid-template-columns: 1fr;
    }

    .ydc-udolo-page .ydcu-journey-intro {

        position: static;
    }

    .ydc-udolo-page .ydcu-components-grid {

        grid-template-columns: 1fr;
    }

    .ydc-udolo-page .ydcu-image-feature {

        min-height: 520px;
    }

    .ydc-udolo-page .ydcu-impact-image,
    .ydc-udolo-page .ydcu-festival-image {

        height: 400px;

        min-height: 400px;
    }

    .ydc-udolo-page .ydcu-country-list {

        grid-template-columns: 1fr 1fr;
    }

    .ydc-udolo-page .ydcu-gallery-grid {

        grid-template-columns: 1fr 1fr;

        grid-auto-rows: 210px;
    }

    .ydc-udolo-page .ydcu-gallery-wide {

        grid-column: span 2;
    }

    .ydc-udolo-page .ydcu-final-image {

        min-height: 500px;
    }

    .ydc-udolo-page .ydcu-cta {

        margin:
            0 15px 25px;

        padding:
            60px 25px;

        border-radius: 22px;
    }

}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 420px) {

    .ydc-udolo-page .ydcu-hero h1 {

        font-size: 58px !important;
    }

    .ydc-udolo-page .ydcu-country-list {

        grid-template-columns: 1fr;
    }

    .ydc-udolo-page .ydcu-gallery-grid {

        grid-template-columns: 1fr;

        grid-auto-rows: 260px;
    }

    .ydc-udolo-page .ydcu-gallery-wide {

        grid-column: span 1;
    }

    .ydc-udolo-page .ydcu-hero-buttons,
    .ydc-udolo-page .ydcu-cta-buttons {

        flex-direction: column;

        align-items: stretch;
    }

    .ydc-udolo-page .ydcu-btn {

        width: 100%;
    }

}