/* =========================================================
   BRAGA HALF MARATHON 2027
   LOCATION / HOW TO GET THERE
   RUNNING PORTUGAL
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #26384c;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
}


/* =========================================================
   TOP BAR
========================================================= */

.identity-bar {
    min-height: 38px;
    background: #26384c;
    color: #ffffff;

    display: flex;
    align-items: center;
}

.identity-inner {
    width: min(1220px,94%);
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.identity-place,
.identity-date {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.identity-date {
    color: #e3c3c6;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: relative;
    z-index: 100;

    background: #ffffff;

    border-bottom:
        1px solid rgba(38,56,76,.12);
}

.header-inner {
    width: min(1220px,94%);
    min-height: 100px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 28px;
}


/* compatibility with both Braga versions */

.brand,
.site-logo {
    flex: 0 0 245px;
}

.brand img,
.site-logo img {
    width: 245px;
}


/* =========================================================
   MAIN MENU
========================================================= */

.main-menu {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 25px;
}

.main-menu > a,
.menu-dropdown-toggle {
    position: relative;

    min-height: 42px;

    display: inline-flex;
    align-items: center;

    border: 0;
    background: transparent;

    color: #26384c;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: .07em;
    text-transform: uppercase;

    cursor: pointer;
}

.main-menu > a::after,
.menu-dropdown-toggle::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 3px;

    height: 2px;

    background: #8b1d28;

    transform: scaleX(0);
    transform-origin: left;

    transition: transform .2s ease;
}

.main-menu > a:hover::after,
.main-menu > a.active::after,
.menu-dropdown-toggle:hover::after,
.menu-dropdown-toggle.active::after {
    transform: scaleX(1);
}


/* =========================================================
   INFO DROPDOWN
========================================================= */

.menu-dropdown {
    position: relative;
}

.menu-dropdown-toggle {
    gap: 7px;
}

.menu-dropdown-panel {
    position: absolute;

    top: calc(100% + 5px);
    left: 50%;

    width: 215px;

    background: #ffffff;

    border-top:
        3px solid #8b1d28;

    box-shadow:
        0 12px 32px rgba(0,0,0,.16);

    opacity: 0;
    visibility: hidden;

    transform:
        translateX(-50%)
        translateY(-7px);

    transition:
        opacity .18s ease,
        transform .18s ease,
        visibility .18s ease;
}


/* supports both JS versions */

.menu-dropdown.open .menu-dropdown-panel,
.menu-dropdown-panel.open {
    opacity: 1;
    visibility: visible;

    transform:
        translateX(-50%)
        translateY(0);
}

.menu-dropdown-panel a {
    display: block;

    padding: 12px 17px;

    border-bottom:
        1px solid #eeeeee;

    color: #344353;

    font-size: 12px;
    font-weight: 700;
}

.menu-dropdown-panel a:hover,
.menu-dropdown-panel a.active {
    background: #f7f3f2;
    color: #8b1d28;
}


/* =========================================================
   LANGUAGE
========================================================= */

.language-selector {
    position: relative;
}

.language-button,
.language-toggle {
    min-width: 70px;
    height: 38px;

    padding: 0 13px;

    border: 1px solid #d6dbe0;

    background: #ffffff;
    color: #26384c;

    font-size: 11px;
    font-weight: 900;

    cursor: pointer;
}

.language-panel {
    position: absolute;

    top: calc(100% + 7px);
    right: 0;

    width: 170px;

    background: #ffffff;

    border-top:
        3px solid #8b1d28;

    box-shadow:
        0 10px 30px rgba(0,0,0,.17);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-6px);

    transition:
        opacity .18s ease,
        transform .18s ease,
        visibility .18s ease;

    z-index: 150;
}


/* supports both JS versions */

.language-selector.open .language-panel,
.language-panel.open {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.language-panel a {
    display: block;

    padding: 11px 16px;

    border-bottom:
        1px solid #eeeeee;

    color: #344353;

    font-size: 12px;
    font-weight: 700;
}

.language-panel a:hover,
.language-panel a.active {
    background: #f7f3f2;
    color: #8b1d28;
}

.mobile-toggle {
    display: none;
}


/* =========================================================
   HERO / PAGE BANNER
========================================================= */

.location-hero,
.page-banner {
    position: relative;

    min-height: 380px;

    display: flex;
    align-items: center;

    background-image:

        linear-gradient(
            90deg,
            rgba(25,38,52,.88) 0%,
            rgba(25,38,52,.62) 36%,
            rgba(25,38,52,.20) 68%,
            rgba(25,38,52,.06) 100%
        ),

        url("https://www.braga-half-marathon.com/images/location.jpg");

    background-size: cover;
    background-position: center;

    overflow: hidden;
}


/* old HTML overlay remains harmless */

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

.location-hero-inner,
.page-banner-content {
    position: relative;
    z-index: 2;

    width: min(1220px,94%);
    margin: auto;
}

.location-hero-copy,
.page-banner-content {
    max-width: 690px;
    color: #ffffff;
}

.hero-kicker,
.page-kicker,
.section-kicker,
.section-label,
.transport-label {
    color: #8b1d28;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: .20em;
    text-transform: uppercase;
}

.hero-kicker,
.page-kicker {
    color: #e9cdd0;
}

.location-hero h1,
.page-banner h1 {
    margin-top: 12px;

    font-size:
        clamp(48px,5vw,60px);

    line-height: .98;

    font-weight: 900;

    text-transform: uppercase;
}

.location-hero p,
.page-banner p {
    max-width: 580px;

    margin-top: 19px;

    font-size: 18px;
    line-height: 1.55;
}


/* =========================================================
   COUNTDOWN
   Included to keep consistency with other Braga pages
========================================================= */

.countdown-section {
    border-bottom:
        1px solid #e7e7e7;
}

.mini-countdown {
    width: min(1180px,94%);
    min-height: 82px;
    margin: auto;

    display: grid;

    grid-template-columns:
        1.35fr
        repeat(4,.7fr)
        1.25fr;
}

.mini-countdown > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 13px 12px;

    border-right:
        1px solid #eeeeee;
}

.countdown-intro {
    align-items: flex-start !important;
}

.countdown-intro strong {
    color: #26384c !important;
    font-size: 13px !important;
}

.countdown-intro span {
    color: #8b1d28 !important;
}

.mini-countdown strong {
    color: #8b1d28;

    font-size: 27px;
    font-weight: 900;
}

.mini-countdown span {
    margin-top: 5px;

    color: #777777;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.race-day {
    background: #26384c;
}

.race-day strong {
    color: #ffffff !important;
    font-size: 16px !important;
}

.race-day span {
    color: #e3c3c6 !important;
}


/* =========================================================
   GENERAL LOCATION CONTAINER
========================================================= */

.location-container {
    width: min(1100px,94%);
    margin: auto;
}


/* =========================================================
   INTRO
========================================================= */

.location-intro {
    padding:
        78px 20px 68px;
}

.location-intro .location-container {
    max-width: 900px;

    text-align: center;
}

.location-intro h2 {
    margin-top: 10px;

    font-size:
        clamp(35px,4vw,50px);

    font-weight: 900;

    color: #26384c;
}

.location-lead {
    max-width: 780px;

    margin:
        18px auto 0;

    color: #68727c;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   QUICK FACTS
========================================================= */

.quick-facts {
    width: min(1050px,100%);

    margin:
        48px auto 0;

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 12px;
}

.quick-fact {
    min-height: 135px;

    padding: 23px;

    background: #f5f2ef;

    border-top:
        3px solid #8b1d28;

    text-align: left;
}

.quick-icon {
    display: block;

    margin-bottom: 11px;

    font-size: 25px;
    line-height: 1;
}

.quick-fact strong {
    display: block;

    color: #26384c;

    font-size: 16px;
    line-height: 1.35;
}

.quick-fact > span:last-child {
    display: block;

    margin-top: 6px;

    color: #777777;

    font-size: 11px;
}


/* =========================================================
   TRANSPORT SECTIONS
========================================================= */

.transport-section {
    padding:
        80px 20px;

    background: #ffffff;
}

.transport-section.transport-alt {
    background: #f5f2ef;
}

.transport-card {
    width: min(1050px,100%);
    margin: auto;

    display: grid;

    grid-template-columns:
        105px 1fr;

    gap: 42px;

    align-items: start;
}

.transport-icon {
    width: 92px;
    height: 92px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #26384c;

    color: #ffffff;

    font-size: 37px;
    line-height: 1;

    border-radius: 50%;
}

.transport-content {
    max-width: 850px;
}

.transport-content h2 {
    margin-top: 9px;

    font-size:
        clamp(34px,4vw,48px);

    font-weight: 900;

    color: #26384c;
}

.transport-content h3 {
    margin-top: 32px;

    color: #26384c;

    font-size: 22px;
    font-weight: 900;
}

.transport-content p {
    margin-top: 15px;

    color: #68727c;

    font-size: 15px;
    line-height: 1.7;
}

.transport-content p strong {
    color: #26384c;
}


/* =========================================================
   AIRPORT ROUTE
========================================================= */

.route-highlight {
    margin-top: 30px;

    padding: 24px 27px;

    display: flex;
    align-items: center;

    gap: 25px;

    background: #f5f2ef;

    border-left:
        4px solid #8b1d28;
}

.transport-alt .route-highlight {
    background: #ffffff;
}

.route-highlight > div {
    display: flex;
    flex-direction: column;
}

.route-small {
    color: #777777;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.route-highlight strong {
    margin-top: 3px;

    color: #26384c;

    font-size: 20px;
    font-weight: 900;
}

.route-arrow {
    color: #8b1d28;

    font-size: 26px;
    font-weight: 900;
}

.route-time {
    margin-left: auto;

    text-align: right;

    color: #777777;

    font-size: 11px;
}

.route-time strong {
    display: block;

    margin-top: 2px;

    color: #8b1d28;

    font-size: 20px;
}


/* =========================================================
   BUTTONS
========================================================= */

.transport-buttons {
    margin-top: 27px;

    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}

.location-button {
    min-width: 180px;
    min-height: 48px;

    padding:
        0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #8b1d28;

    border:
        2px solid #8b1d28;

    color: #ffffff;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: .08em;

    text-transform: uppercase;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}

.location-button:hover {
    background: #26384c;
    border-color: #26384c;
    color: #ffffff;
}

.location-button.secondary {
    background: #ffffff;

    color: #8b1d28;
}

.location-button.secondary:hover {
    background: #26384c;
    border-color: #26384c;

    color: #ffffff;
}


/* =========================================================
   TRAVEL TIP
========================================================= */

.travel-tip {
    margin-top: 28px;

    padding: 25px 27px;

    background: #ffffff;

    border:
        1px solid #dedede;

    border-left:
        4px solid #8b1d28;
}

.transport-section:not(.transport-alt)
.travel-tip {
    background: #f5f2ef;
}

.travel-tip strong {
    display: block;

    color: #8b1d28;

    font-size: 14px;
    font-weight: 900;
}

.travel-tip p {
    margin-top: 8px;
}


/* =========================================================
   STATION INFORMATION
========================================================= */

.station-info {
    margin-top: 28px;

    padding: 24px 27px;

    background: #ffffff;

    border-left:
        4px solid #26384c;
}

.transport-section:not(.transport-alt)
.station-info {
    background: #f5f2ef;
}

.station-info span {
    display: block;

    color: #8b1d28;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .13em;

    text-transform: uppercase;
}

.station-info strong {
    display: block;

    margin-top: 7px;

    color: #26384c;

    font-size: 18px;
    font-weight: 900;
}

.station-info p {
    margin-top: 4px;

    font-size: 13px;
}

.small-note {
    margin-top: 25px !important;

    color: #858585 !important;

    font-size: 11px !important;

    line-height: 1.6 !important;
}


/* =========================================================
   ROAD GRID
========================================================= */

.road-grid {
    margin-top: 30px;

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 12px;
}

.road-item {
    padding: 24px;

    background: #ffffff;

    border-top:
        3px solid #8b1d28;
}

.road-item span {
    display: block;

    color: #777777;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.road-item strong {
    display: block;

    margin-top: 8px;

    color: #26384c;

    font-size: 18px;
}


/* =========================================================
   RACE WEEKEND WARNING
========================================================= */

.race-weekend-warning {
    margin-top: 30px;

    padding: 25px 27px;

    background: #ffffff;

    border-left:
        4px solid #8b1d28;
}

.race-weekend-warning strong {
    display: block;

    color: #8b1d28;

    font-size: 15px;
    font-weight: 900;
}

.race-weekend-warning p {
    margin-top: 8px;
}


/* =========================================================
   ONCE YOU ARRIVE IN BRAGA
========================================================= */

.in-braga {
    padding:
        80px 20px 90px;

    background: #26384c;

    color: #ffffff;
}

.in-braga .location-container {
    width: min(1050px,94%);
}

.in-braga .section-label {
    color: #e3c3c6;
}

.in-braga-header {
    max-width: 800px;
}

.in-braga-header h2 {
    margin-top: 9px;

    color: #ffffff;

    font-size:
        clamp(34px,4vw,48px);

    font-weight: 900;
}

.in-braga-header p {
    margin-top: 16px;

    color:
        rgba(255,255,255,.72);

    font-size: 15px;

    line-height: 1.7;
}

.city-points {
    margin-top: 45px;

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 14px;
}

.city-point {
    min-height: 190px;

    padding: 28px;

    border:
        1px solid rgba(255,255,255,.15);
}

.city-point > span {
    display: block;

    margin-bottom: 30px;

    color: #e3c3c6;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: .12em;
}

.city-point strong {
    display: block;

    color: #ffffff;

    font-size: 18px;
    font-weight: 900;
}

.city-point p {
    margin-top: 8px;

    color:
        rgba(255,255,255,.62);

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   MAP
========================================================= */

.location-map-section {
    padding:
        85px 20px 75px;

    background: #ffffff;
}

.location-map-section
.location-container {
    width: min(1100px,94%);
}

.map-heading {
    max-width: 760px;

    margin-bottom: 30px;
}

.map-heading h2 {
    margin-top: 9px;

    color: #26384c;

    font-size:
        clamp(34px,4vw,48px);

    font-weight: 900;
}

.map-heading p {
    margin-top: 13px;

    color: #68727c;

    font-size: 15px;
    line-height: 1.7;
}

.map-wrapper {
    width: 100%;

    padding: 8px;

    background: #ffffff;

    border:
        1px solid #dedede;

    box-shadow:
        0 12px 35px rgba(38,56,76,.09);

    overflow: hidden;
}

.map-wrapper iframe {
    display: block;

    width: 100%;
    min-height: 500px;

    border: 0;
}

.map-link {
    margin-top: 13px;

    text-align: right;
}

.map-link a {
    color: #8b1d28;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: .05em;

    text-transform: uppercase;
}

.map-link a:hover {
    text-decoration: underline;
}


/* =========================================================
   TRAVEL NOTE
========================================================= */

.travel-note-section {
    padding:
        0 20px 85px;

    background: #ffffff;
}

.travel-note-box {
    width: min(1050px,94%);

    margin: auto;

    padding: 38px 42px;

    background: #f5f2ef;

    border-left:
        4px solid #8b1d28;
}

.travel-note-box > span {
    display: block;

    color: #8b1d28;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .14em;

    text-transform: uppercase;
}

.travel-note-box h2 {
    margin-top: 8px;

    color: #26384c;

    font-size: 29px;
    font-weight: 900;
}

.travel-note-box p {
    max-width: 800px;

    margin-top: 11px;

    color: #68727c;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   RUNNING PORTUGAL
   Optional if used in Location HTML
========================================================= */

.running-portugal-section {
    padding:
        70px 20px;

    background: #26384c;

    color: #ffffff;
}

.running-portugal-inner {
    width: min(900px,92%);

    margin: auto;

    display: grid;

    grid-template-columns:
        100px 1fr;

    gap: 35px;

    align-items: center;
}

.rp-mark {
    width: 90px;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        2px solid #e3c3c6;

    color: #ffffff;

    font-size: 27px;
    font-weight: 900;

    letter-spacing: .05em;
}

.rp-copy > span {
    color: #e3c3c6;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .17em;

    text-transform: uppercase;
}

.rp-copy h2 {
    margin-top: 7px;

    color: #ffffff;

    font-size: 34px;
}

.rp-copy p {
    max-width: 650px;

    margin-top: 12px;

    color:
        rgba(255,255,255,.72);

    line-height: 1.7;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding:
        38px 20px 28px;

    background: #1d2c3b;

    color: #ffffff;
}

.footer-main {
    width: min(1050px,92%);

    margin: auto;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 30px;
}

.footer-brand strong,
.footer-event strong {
    display: block;

    font-size: 13px;
    font-weight: 900;

    letter-spacing: .06em;
}

.footer-brand span,
.footer-event span {
    display: block;

    margin-top: 5px;

    color:
        rgba(255,255,255,.58);

    font-size: 10px;
}

.footer-event {
    text-align: right;
}

.footer-disclaimer {
    width: min(1050px,92%);

    margin:
        25px auto 0;

    padding-top: 20px;

    border-top:
        1px solid rgba(255,255,255,.10);
}

.footer-disclaimer p {
    max-width: 800px;

    color:
        rgba(255,255,255,.47);

    font-size: 9px;
    line-height: 1.6;
}


/* compatibility with first Location footer */

.footer-inner {
    width: min(1050px,92%);
    margin: auto;
}

.footer-inner p {
    color:
        rgba(255,255,255,.58);

    font-size: 10px;
    line-height: 1.6;
}

.footer-inner .footer-event {
    margin-bottom: 10px;
    text-align: left;
}

.footer-inner .footer-copy {
    margin-top: 20px;
    padding-top: 17px;

    border-top:
        1px solid rgba(255,255,255,.10);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .main-menu {
        gap: 17px;
    }

    .quick-facts {
        grid-template-columns:
            repeat(2,1fr);
    }

}


@media (max-width: 900px) {

    .transport-card {
        grid-template-columns:
            80px 1fr;

        gap: 28px;
    }

    .transport-icon {
        width: 72px;
        height: 72px;

        font-size: 29px;
    }

    .city-points {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   MOBILE MENU
========================================================= */

@media (max-width: 820px) {

    .brand,
    .site-logo {
        flex:
            0 0 180px;
    }

    .brand img,
    .site-logo img {
        width: 180px;
    }

    .mobile-toggle {
        display: flex;

        width: 42px;
        height: 38px;

        align-items: center;
        justify-content: center;

        border:
            1px solid #dddddd;

        background: #ffffff;

        color: #26384c;

        font-size: 20px;

        cursor: pointer;
    }

    .main-menu {
        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        display: none;

        flex-direction: column;

        gap: 0;

        background: #ffffff;

        box-shadow:
            0 12px 25px rgba(0,0,0,.12);
    }

    .site-header.menu-open
    .main-menu {
        display: flex;
    }

    .main-menu > a,
    .menu-dropdown-toggle {
        width: 100%;

        min-height: 48px;

        justify-content: center;

        border-bottom:
            1px solid #eeeeee;
    }

    .menu-dropdown {
        width: 100%;
    }

    .menu-dropdown-panel {
        position: static;

        width: 100%;

        display: none;

        opacity: 1;
        visibility: visible;

        transform: none;

        box-shadow: none;

        border-top:
            2px solid #8b1d28;
    }

    .menu-dropdown.open
    .menu-dropdown-panel,
    .menu-dropdown-panel.open {
        display: block;
    }

    .menu-dropdown-panel a {
        text-align: center;
    }

    .language-selector {
        margin-left: auto;
    }

    .mini-countdown {
        grid-template-columns:
            repeat(4,1fr);
    }

    .countdown-intro,
    .race-day {
        grid-column:
            1 / 5;
    }

}


/* =========================================================
   SMALL TABLET / LARGE MOBILE
========================================================= */

@media (max-width: 700px) {

    .location-hero,
    .page-banner {
        min-height: 335px;

        background-position: center;
    }

    .location-hero h1,
    .page-banner h1 {
        font-size: 42px;
    }

    .location-hero p,
    .page-banner p {
        font-size: 16px;
    }

    .transport-card {
        display: block;
    }

    .transport-icon {
        margin-bottom: 23px;
    }

    .route-highlight {
        flex-wrap: wrap;
    }

    .route-time {
        width: 100%;

        margin-left: 0;

        padding-top: 13px;

        border-top:
            1px solid rgba(38,56,76,.12);

        text-align: left;
    }

    .road-grid {
        grid-template-columns: 1fr;
    }

    .map-wrapper iframe {
        min-height: 420px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 520px) {

    .identity-inner {
        width: 92%;
    }

    .identity-place,
    .identity-date {
        font-size: 8px;
    }

    .header-inner {
        width: 92%;
        min-height: 86px;

        gap: 12px;
    }

    .brand,
    .site-logo {
        flex:
            0 0 150px;
    }

    .brand img,
    .site-logo img {
        width: 150px;
    }

    .language-button,
    .language-toggle {
        min-width: 54px;

        padding:
            0 9px;
    }

    .location-hero,
    .page-banner {
        min-height: 310px;

        background-position: center;
    }

    .location-hero-inner,
    .page-banner-content {
        width: 92%;
    }

    .location-hero h1,
    .page-banner h1 {
        font-size: 38px;
    }

    .location-intro {
        padding:
            58px 18px 50px;
    }

    .location-intro h2 {
        font-size: 34px;
    }

    .quick-facts {
        grid-template-columns: 1fr;

        margin-top: 35px;
    }

    .transport-section {
        padding:
            58px 18px;
    }

    .transport-content h2 {
        font-size: 33px;
    }

    .transport-buttons {
        flex-direction: column;
    }

    .location-button {
        width: 100%;
    }

    .route-highlight {
        padding: 20px;
    }

    .in-braga {
        padding:
            60px 18px 65px;
    }

    .in-braga-header h2 {
        font-size: 34px;
    }

    .city-point {
        min-height: auto;
    }

    .location-map-section {
        padding:
            60px 18px;
    }

    .map-heading h2 {
        font-size: 34px;
    }

    .map-wrapper {
        padding: 5px;
    }

    .map-wrapper iframe {
        min-height: 380px;
    }

    .travel-note-section {
        padding:
            0 18px 65px;
    }

    .travel-note-box {
        width: 100%;

        padding:
            30px 24px;
    }

    .travel-note-box h2 {
        font-size: 26px;
    }

    .running-portugal-inner {
        grid-template-columns: 1fr;
    }

    .rp-mark {
        width: 70px;
        height: 70px;
    }

    .footer-main {
        flex-direction: column;
    }

    .footer-event {
        text-align: left;
    }

}