/* =================================
   HOW TO GET PAGE
================================= */

.how-to-get-page {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 0 64px;
    box-sizing: border-box;
}

.how-to-get-page *,
.how-to-get-page *::before,
.how-to-get-page *::after {
    box-sizing: border-box;
}

/* =================================
   INTRODUCTION
================================= */

.how-to-get-intro {
    max-width: 820px;
    margin: 34px 0 36px;
}

.how-to-get-intro h1 {
    margin: 0 0 18px;
    font-size: 42px;
    line-height: 1.15;
}

.how-to-get-lead {
    margin: 0;
    color: #333333;
    font-size: 18px;
    line-height: 1.75;
}

/* =================================
   LOCATION SUMMARY
================================= */

.location-summary {
    margin: 0 0 50px;
    padding: 36px;

    background: #f7f5f0;
    border: 1px solid #e2dccf;
    border-radius: 16px;
}

.location-summary__header {
    max-width: 760px;
    margin-bottom: 26px;
}

.location-summary__label {
    display: inline-flex;
    margin-bottom: 13px;
    padding: 7px 11px;

    background: #ffffff;
    border: 1px solid #dfd5bd;
    border-radius: 7px;

    color: #8a6a1e;
    font-size: 13px;
    font-weight: 700;
}

.location-summary__header h2 {
    margin: 0 0 13px;
    font-size: 32px;
    line-height: 1.2;
}

.location-summary__header p {
    margin: 0;
    color: #444444;
    font-size: 16px;
    line-height: 1.7;
}

.location-summary__grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.location-card {
    display: flex;
    flex-direction: column;

    min-width: 0;
    min-height: 175px;
    padding: 22px;

    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 12px;
}

.location-card--featured {
    border-top: 4px solid #bfa25a;
}

.location-card__title {
    margin-bottom: 11px;

    color: #666666;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-card strong {
    display: block;
    margin-bottom: 12px;

    color: #111111;
    font-size: 21px;
    line-height: 1.3;
}

.location-card--featured strong {
    color: #8a6a1e;
}

.location-card p {
    margin: 0;

    color: #444444;
    font-size: 14px;
    line-height: 1.65;
}

.location-summary__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;

    margin-top: 24px;
}

.location-summary__secondary-link {
    color: #765b1c;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.location-summary__secondary-link:hover {
    text-decoration: underline;
}

/* =================================
   MAIN IMAGE
================================= */

.how-to-get-image {
    margin: 0 0 50px;
}

.how-to-get-image img {
    display: block;

    width: 100%;
    height: auto;

    border-radius: 14px;
}

.how-to-get-image figcaption {
    margin-top: 10px;

    color: #666666;
    font-size: 13px;
    line-height: 1.5;
}

/* =================================
   COMMON SECTIONS
================================= */

.tram-directions,
.area-directions,
.walking-route,
.transport-options,
.nearby-attractions,
.arrival-checklist {
    margin: 0 0 54px;
    padding: 10px 0;
}

.faq-accordion{
    padding: 10px 0;
}

.area-directions h2,
.walking-route h2,
.transport-options h2,
.nearby-attractions h2,
.arrival-checklist h2 {
    margin: 0 0 15px;
    font-size: 32px;
    line-height: 1.2;
}

.area-directions > p,
.transport-options > p,
.nearby-attractions > p,
.arrival-checklist > p {
    max-width: 800px;
    margin: 0 0 25px;

    color: #333333;
    font-size: 17px;
    line-height: 1.75;
}

/* =================================
   TRAM DIRECTIONS
================================= */

.tram-directions {
    display: grid;
    grid-template-columns:
        minmax(0, 1.55fr)
        minmax(235px, 0.65fr);
    gap: 24px;
    align-items: stretch;
}

.tram-directions__content {
    padding: 32px;

    background: #f7f5f0;
    border: 1px solid #e2dccf;
    border-radius: 15px;
}

.tram-directions__eyebrow {
    display: inline-flex;
    margin-bottom: 13px;
    padding: 7px 10px;

    background: #ffffff;
    border: 1px solid #dfd5bd;
    border-radius: 7px;

    color: #8a6a1e;
    font-size: 12px;
    font-weight: 700;
}

.tram-directions__content h2 {
    margin: 0 0 14px;
    font-size: 32px;
    line-height: 1.2;
}

.tram-directions__content > p {
    margin: 0 0 25px;

    color: #333333;
    font-size: 16px;
    line-height: 1.7;
}

.tram-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.tram-steps li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 15px;

    padding: 18px;

    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 11px;
}

.tram-step__number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 32px;

    background: #f5efdf;
    border: 1px solid #e2d5b4;
    border-radius: 7px;

    color: #8a6a1e;
    font-size: 12px;
    font-weight: 700;
}

.tram-steps h3 {
    margin: 0 0 7px;

    font-size: 18px;
    line-height: 1.3;
}

.tram-steps p {
    margin: 0;

    color: #444444;
    font-size: 14px;
    line-height: 1.6;
}

.tram-directions__summary {
    display: flex;
    flex-direction: column;

    padding: 27px;

    background: #0d0d0d;
    border-radius: 15px;

    color: #ffffff;
}

.tram-directions__summary > span {
    margin-bottom: 10px;

    color: #bdbdbd;
    font-size: 13px;
    font-weight: 700;
}

.tram-directions__summary > strong {
    margin-bottom: 23px;

    color: #d4b06a;
    font-size: 25px;
    line-height: 1.25;
}

.tram-directions__summary dl {
    margin: 0 0 23px;
}

.tram-directions__summary dl div {
    padding: 13px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.13);
}

.tram-directions__summary dt {
    margin-bottom: 5px;

    color: #a9a9a9;
    font-size: 12px;
}

.tram-directions__summary dd {
    margin: 0;

    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.tram-directions__summary a {
    margin-top: auto;

    color: #d4b06a;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

/* =================================
   DIRECTIONS FROM AREAS
================================= */

.area-directions__grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 17px;
}

.area-direction-card {
    min-width: 0;
    padding: 24px;

    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 13px;
}

.area-direction-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 30px;
    margin-bottom: 17px;

    background: #f7f2e7;
    border: 1px solid #e6dcc3;
    border-radius: 7px;

    color: #8c712c;
    font-size: 13px;
    font-weight: 700;
}

.area-direction-card h3 {
    margin: 0 0 11px;

    font-size: 21px;
    line-height: 1.3;
}

.area-direction-card p {
    margin: 0 0 17px;

    color: #444444;
    font-size: 15px;
    line-height: 1.65;
}

.area-direction-card__route {
    padding-top: 15px;

    border-top: 1px solid #e2e2e2;

    color: #765b1c;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.55;
}

/* =================================
   WALKING ROUTE
================================= */

.walking-route {
    padding: 32px;

    background: #f7f5f0;
    border: 1px solid #e2dccf;
    border-radius: 15px;
}

.walking-route__header {
    max-width: 780px;
    margin-bottom: 25px;
}

.walking-route__header p {
    margin: 0;

    color: #333333;
    font-size: 16px;
    line-height: 1.7;
}

.walking-route__steps {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.walking-route-card {
    display: flex;
    gap: 14px;

    min-width: 0;
    padding: 20px;

    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 11px;
}

.walking-route-card > span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    width: 31px;
    height: 31px;

    background: #0d0d0d;
    border-radius: 50%;

    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.walking-route-card h3 {
    margin: 3px 0 8px;

    font-size: 17px;
    line-height: 1.3;
}

.walking-route-card p {
    margin: 0;

    color: #444444;
    font-size: 14px;
    line-height: 1.6;
}

.walking-route__notice {
    margin-top: 20px;
    padding: 15px 17px;

    background: #ffffff;
    border-left: 4px solid #bfa25a;

    color: #333333;
    font-size: 14px;
    line-height: 1.65;
}

/* =================================
   TRANSPORT OPTIONS
================================= */

.transport-options__grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 17px;
}

.transport-option-card {
    display: flex;
    flex-direction: column;

    min-width: 0;
    padding: 24px;

    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 13px;
}

.transport-option-card__type {
    display: inline-flex;
    align-self: flex-start;

    margin-bottom: 15px;
    padding: 6px 9px;

    background: #f5efdf;
    border-radius: 6px;

    color: #7b5c16;
    font-size: 12px;
    font-weight: 700;
}

.transport-option-card h3 {
    margin: 0 0 11px;

    font-size: 20px;
    line-height: 1.3;
}

.transport-option-card p {
    flex-grow: 1;
    margin: 0 0 18px;

    color: #444444;
    font-size: 15px;
    line-height: 1.65;
}

.transport-option-card__note {
    padding-top: 15px;

    border-top: 1px solid #e1e1e1;

    color: #666666;
    font-size: 13px;
    line-height: 1.55;
}

/* =================================
   NEARBY ATTRACTIONS
================================= */

.nearby-attractions__grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.nearby-attraction-card {
    padding: 22px;

    background: #f8f8f8;
    border: 1px solid #dddddd;
    border-radius: 12px;
}

.nearby-attraction-card h3 {
    margin: 0 0 9px;

    font-size: 19px;
    line-height: 1.3;
}

.nearby-attraction-card p {
    margin: 0;

    color: #444444;
    font-size: 14px;
    line-height: 1.65;
}

/* =================================
   ARRIVAL CHECKLIST
================================= */

.arrival-checklist {
    padding: 32px;

    background: #f7f5f0;
    border: 1px solid #e2dccf;
    border-radius: 15px;
}

.arrival-checklist ul {
    margin: 0;
    padding-left: 22px;
}

.arrival-checklist li {
    margin-bottom: 11px;

    color: #333333;
    font-size: 16px;
    line-height: 1.65;
}

/* =================================
   CTA
================================= */

.how-to-get-cta {
    margin: 0 0 54px;
    padding: 38px;

    background: #0c0c0c;
    border-radius: 16px;

    color: #ffffff;
}

.how-to-get-cta__content {
    max-width: 760px;
}

.how-to-get-cta h2 {
    margin: 0 0 14px;

    color: #ffffff;
    font-size: 32px;
    line-height: 1.2;
}

.how-to-get-cta p {
    margin: 0 0 24px;

    color: #dedede;
    font-size: 16px;
    line-height: 1.7;
}

.how-to-get-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* =================================
   TABLET
================================= */

@media (max-width: 930px) {
    .how-to-get-page {
        width: calc(100% - 32px);
    }

    .how-to-get-intro h1 {
        font-size: 36px;
    }

    .tram-directions {
        grid-template-columns: 1fr;
    }

    .tram-directions__summary {
        min-height: 320px;
    }

    .transport-options__grid,
    .walking-route__steps {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

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

@media (max-width: 700px) {
    .how-to-get-page {
        width: calc(100% - 24px);
        padding-bottom: 44px;
    }

    .how-to-get-intro {
        margin-top: 25px;
    }

    .how-to-get-intro h1 {
        font-size: 30px;
    }

    .how-to-get-lead {
        font-size: 16px;
        line-height: 1.7;
    }

    .location-summary,
    .tram-directions__content,
    .walking-route,
    .arrival-checklist,
    .how-to-get-cta {
        padding: 24px 19px;
    }

    .location-summary__header h2,
    .tram-directions__content h2,
    .area-directions h2,
    .walking-route h2,
    .transport-options h2,
    .nearby-attractions h2,
    .arrival-checklist h2,
    .how-to-get-cta h2 {
        font-size: 27px;
    }

    .location-summary__grid,
    .area-directions__grid,
    .walking-route__steps,
    .transport-options__grid,
    .nearby-attractions__grid {
        grid-template-columns: 1fr;
    }

    .location-summary__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .location-summary__actions a {
        width: 100%;
        text-align: center;
    }

    .how-to-get-cta__actions {
        flex-direction: column;
    }

    .how-to-get-cta__actions a {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .how-to-get-page {
        width: calc(100% - 16px);
    }

    .how-to-get-intro h1 {
        font-size: 27px;
    }
}