/* ==========================================================
   TOURPLUG PUBLIC DESTINATION PAGE
========================================================== */

.tpd-page {
    --tpd-orange: #e77722;
    --tpd-orange-dark: #bd5712;
    --tpd-ink: #17130f;
    --tpd-muted: #716a63;
    --tpd-soft: #f7f3ee;
    --tpd-border: #e8e0d8;

    color: var(--tpd-ink);
    background: #fff;
}


/* ==========================================================
   HERO
========================================================== */

.tpd-hero {
    position: relative;
    min-height: 610px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #40372f;
}

.tpd-hero-image,
.tpd-hero-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.tpd-hero-image {
    object-fit: cover;
}

.tpd-hero-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            circle at 28% 24%,
            rgba(255,255,255,.18),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #c99568,
            #68422c
        );
    color: rgba(255,255,255,.65);
}

.tpd-hero-placeholder i {
    font-size: 6rem;
}

.tpd-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(10,8,7,.86) 0%,
            rgba(10,8,7,.42) 46%,
            rgba(10,8,7,.1) 80%
        );
}

.tpd-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 4rem;
    padding-bottom: 4.25rem;
}

.tpd-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,.8);
    font-size: .79rem;
}

.tpd-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.tpd-breadcrumb i {
    font-size: .62rem;
}

.tpd-hero-copy {
    max-width: 810px;
}

.tpd-location-label {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-bottom: .85rem;
    color: #fff;
    font-size: .78rem;
    font-weight: 750;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.tpd-hero h1 {
    margin: 0;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: clamp(3rem, 7vw, 6.3rem);
    font-weight: 850;
    line-height: .96;
    letter-spacing: -.055em;
}

.tpd-hero-copy > p {
    max-width: 680px;
    margin: 1.3rem 0 0;
    color: rgba(255,255,255,.85);
    font-size: 1.08rem;
    line-height: 1.75;
}

.tpd-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 2rem;
}

.tpd-primary-btn,
.tpd-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    min-height: 48px;
    padding: .78rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: .88rem;
    font-weight: 750;
}

.tpd-primary-btn {
    color: #fff;
    background: var(--tpd-orange);
}

.tpd-primary-btn:hover {
    color: #fff;
    background: var(--tpd-orange-dark);
}

.tpd-secondary-btn {
    color: #fff;
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.32);
    backdrop-filter: blur(10px);
}

.tpd-secondary-btn:hover {
    color: #fff;
    background: rgba(255,255,255,.2);
}


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

.tpd-summary {
    padding: 4.5rem 0;
    background: #fff;
}

.tpd-summary-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(380px, .75fr);
    gap: 4rem;
    align-items: center;
}

.tpd-overline {
    display: block;
    margin-bottom: .65rem;
    color: var(--tpd-orange);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.tpd-summary-main h2,
.tpd-section-head h2,
.tpd-final-card h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-weight: 820;
    letter-spacing: -.035em;
}

.tpd-summary-main h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.tpd-summary-main p {
    max-width: 710px;
    margin: 1rem 0 0;
    color: var(--tpd-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.tpd-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8rem;
}

.tpd-fact {
    display: flex;
    align-items: center;
    gap: .8rem;
    min-height: 86px;
    padding: 1rem;
    border: 1px solid var(--tpd-border);
    border-radius: 1rem;
    background: #fff;
}

.tpd-fact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff2e7;
    color: var(--tpd-orange);
}

.tpd-fact small,
.tpd-fact strong {
    display: block;
}

.tpd-fact small {
    margin-bottom: .15rem;
    color: var(--tpd-muted);
    font-size: .7rem;
}

.tpd-fact strong {
    font-size: .9rem;
}


/* ==========================================================
   SHARED SECTIONS
========================================================== */

.tpd-section {
    padding: 5.25rem 0;
}

.tpd-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.25rem;
}

.tpd-section-head h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.tpd-section-head p {
    max-width: 680px;
    margin: .8rem 0 0;
    color: var(--tpd-muted);
    line-height: 1.7;
}

.tpd-view-all {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--tpd-orange-dark);
    text-decoration: none;
    font-size: .86rem;
    font-weight: 800;
}


/* ==========================================================
   GALLERY
========================================================== */

.tpd-gallery-section {
    background: var(--tpd-soft);
}

.tpd-photo-count {
    padding: .45rem .8rem;
    border: 1px solid var(--tpd-border);
    border-radius: 999px;
    background: #fff;
    color: var(--tpd-muted);
    font-size: .78rem;
    font-weight: 700;
}

.tpd-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 240px;
    gap: .85rem;
}

.tpd-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: #ddd;
}

.tpd-gallery-feature {
    grid-column: span 2;
    grid-row: span 2;
}

.tpd-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform .35s ease,
        filter .35s ease;
}

.tpd-gallery-item:hover img {
    transform: scale(1.035);
    filter: saturate(1.04);
}

.tpd-gallery-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(8,7,6,.62) 0%,
            transparent 55%
        );
}

.tpd-gallery-caption {
    position: absolute;
    z-index: 2;
    right: .9rem;
    bottom: .9rem;
    left: .9rem;
    color: #fff;
}

.tpd-gallery-caption small,
.tpd-gallery-caption strong {
    display: block;
}

.tpd-gallery-caption small {
    margin-bottom: .25rem;
    font-size: .68rem;
    opacity: .78;
}

.tpd-gallery-caption strong {
    font-size: .84rem;
}

.tpd-gallery-open {
    position: absolute;
    z-index: 3;
    top: .8rem;
    right: .8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #fff;
    background: rgba(0,0,0,.34);
    backdrop-filter: blur(8px);
}


/* ==========================================================
   EXPERIENCES
========================================================== */

.tpd-experiences {
    background: #fff;
}

.tpd-experience-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
}

.tpd-experience-card {
    overflow: hidden;
    border: 1px solid var(--tpd-border);
    border-radius: 1rem;
    background: #fff;
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.tpd-experience-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(32,22,14,.09);
}

.tpd-experience-image {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eee;
}

.tpd-experience-image img,
.tpd-experience-placeholder {
    width: 100%;
    height: 100%;
}

.tpd-experience-image img {
    display: block;
    object-fit: cover;
    transition: transform .3s ease;
}

.tpd-experience-card:hover
.tpd-experience-image img {
    transform: scale(1.035);
}

.tpd-experience-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background:
        linear-gradient(
            145deg,
            #dcb38c,
            #915d39
        );
}

.tpd-experience-placeholder i {
    font-size: 2.7rem;
}

.tpd-experience-body {
    padding: 1rem;
}

.tpd-experience-category {
    display: inline-block;
    margin-bottom: .55rem;
    color: var(--tpd-orange-dark);
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.tpd-experience-body h3 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.4;
}

.tpd-experience-body h3 a {
    color: var(--tpd-ink);
    text-decoration: none;
}

.tpd-guide {
    margin: .65rem 0 0;
    color: var(--tpd-muted);
    font-size: .76rem;
}

.tpd-experience-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
    margin-top: .9rem;
    padding-top: .8rem;
    border-top: 1px solid var(--tpd-border);
    font-size: .76rem;
}

.tpd-experience-footer .bi-star-fill {
    color: #e9a123;
}

.tpd-experience-footer a {
    color: var(--tpd-orange-dark);
    text-decoration: none;
    font-weight: 750;
}


/* ==========================================================
   EMPTY
========================================================== */

.tpd-empty {
    max-width: 680px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    border: 1px dashed #dccfc3;
    border-radius: 1.25rem;
    background: var(--tpd-soft);
}

.tpd-empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: #fff0e3;
    color: var(--tpd-orange);
    font-size: 1.7rem;
}

.tpd-empty h3 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
}

.tpd-empty p {
    max-width: 520px;
    margin: .8rem auto 1.4rem;
    color: var(--tpd-muted);
    line-height: 1.7;
}


/* ==========================================================
   RELATED
========================================================== */

.tpd-related {
    background: var(--tpd-soft);
}

.tpd-related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.tpd-related-card {
    position: relative;
    min-height: 285px;
    overflow: hidden;
    border-radius: 1rem;
    background: #b78964;
}

.tpd-related-card img,
.tpd-related-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.tpd-related-card img {
    object-fit: cover;
    transition: transform .35s ease;
}

.tpd-related-card:hover img {
    transform: scale(1.04);
}

.tpd-related-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.75);
    background:
        linear-gradient(
            145deg,
            #d7aa83,
            #845237
        );
}

.tpd-related-placeholder i {
    font-size: 3rem;
}

.tpd-related-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(10,8,7,.82),
            rgba(10,8,7,.05) 68%
        );
}

.tpd-related-copy {
    position: absolute;
    z-index: 2;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    color: #fff;
}

.tpd-related-copy small,
.tpd-related-copy strong,
.tpd-related-copy span {
    display: block;
}

.tpd-related-copy small {
    margin-bottom: .2rem;
    font-size: .68rem;
    opacity: .75;
}

.tpd-related-copy strong {
    font-family: "Manrope", sans-serif;
    font-size: 1.08rem;
    font-weight: 800;
}

.tpd-related-copy span {
    margin-top: .25rem;
    font-size: .73rem;
    opacity: .82;
}


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

.tpd-final-cta {
    padding: 5rem 0;
    background: #fff;
}

.tpd-final-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 3rem;
    border-radius: 1.5rem;
    background: #17130f;
    color: #fff;
}

.tpd-final-card h2 {
    max-width: 720px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.1rem);
}

.tpd-final-card p {
    max-width: 650px;
    margin: .9rem 0 0;
    color: rgba(255,255,255,.7);
    line-height: 1.7;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 1199.98px) {

    .tpd-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tpd-experience-grid,
    .tpd-related-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}


@media (max-width: 991.98px) {

    .tpd-header-inner {
        gap: 1rem;
    }

    .tpd-nav {
        display: none;
    }

    .tpd-hero {
        min-height: 540px;
    }

    .tpd-summary-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tpd-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 220px;
    }

    .tpd-experience-grid,
    .tpd-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tpd-final-card {
        align-items: flex-start;
        flex-direction: column;
    }

}


@media (max-width: 767.98px) {

    .tpd-header {
        position: relative;
    }

    .tpd-header-inner {
        min-height: 68px;
    }

    .tpd-brand img {
        max-width: 135px;
        max-height: 40px;
    }

    .tpd-header-actions {
        margin-left: auto;
    }

    .tpd-header-actions span {
        display: none;
    }

    .tpd-signup {
        padding: .62rem .85rem;
    }

    .tpd-hero {
        min-height: 510px;
    }

    .tpd-hero-content {
        padding-bottom: 2.5rem;
    }

    .tpd-breadcrumb {
        margin-bottom: 1.6rem;
    }

    .tpd-hero-copy > p {
        font-size: .95rem;
    }

    .tpd-summary,
    .tpd-section,
    .tpd-final-cta {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .tpd-facts {
        grid-template-columns: 1fr 1fr;
    }

    .tpd-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .tpd-gallery {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 175px;
    }

    .tpd-gallery-feature {
        grid-column: span 2;
        grid-row: span 2;
    }

    .tpd-experience-grid,
    .tpd-related-grid {
        grid-template-columns: 1fr;
    }

    .tpd-related-card {
        min-height: 240px;
    }

    .tpd-final-card {
        padding: 2rem;
    }

}


@media (max-width: 479.98px) {

    .tpd-login {
        display: none;
    }

    .tpd-facts {
        grid-template-columns: 1fr;
    }

    .tpd-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .tpd-gallery-feature {
        grid-column: auto;
        grid-row: auto;
    }

}


/* ==========================================================
   TOURPLUG DESTINATION LAYOUT INTEGRATION FIX
========================================================== */

#main-content {
    width: 100%;
    min-width: 0;
}

.tpd-page {
    width: 100%;
    min-width: 0;
    overflow-x: clip;
}

.tpd-page img {
    max-width: 100%;
}

.tpd-hero {
    width: 100%;
    min-height: 560px;
}

.tpd-hero-image {
    display: block;
}

.tpd-hero-content {
    padding-top: 3rem;
    padding-bottom: 3.75rem;
}


/* ==========================================================
   SMALL DESTINATION GALLERIES
========================================================== */

@media (min-width: 992px) {

    .tpd-gallery-count-1 {
        grid-template-columns: 1fr;
        grid-template-rows: 520px;
    }

    .tpd-gallery-count-1
    .tpd-gallery-feature {
        grid-column: auto;
        grid-row: auto;
    }


    .tpd-gallery-count-2 {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        grid-template-rows: 420px;
    }

    .tpd-gallery-count-2
    .tpd-gallery-feature {
        grid-column: auto;
        grid-row: auto;
    }


    /*
     * Three-image layout:
     *
     * +----------------------+-------------+
     * |                      |   photo 2   |
     * |      COVER PHOTO     +-------------+
     * |                      |   photo 3   |
     * +----------------------+-------------+
     */
    .tpd-gallery-count-3 {
        grid-template-columns:
            minmax(0, 2fr)
            minmax(280px, 1fr);

        grid-template-rows:
            repeat(2, 230px);

        gap: .85rem;
    }

    .tpd-gallery-count-3
    .tpd-gallery-feature {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

}


/* ==========================================================
   GENERAL REFINEMENTS
========================================================== */

.tpd-gallery-item {
    min-width: 0;
}

.tpd-gallery-item img {
    display: block;
}

.tpd-summary {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.tpd-gallery-section {
    border-top: 1px solid var(--tpd-border);
    border-bottom: 1px solid var(--tpd-border);
}

.tpd-section-head > div {
    min-width: 0;
}


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

@media (max-width: 991.98px) {

    .tpd-hero {
        min-height: 500px;
    }

    .tpd-hero-content {
        padding-top: 2.5rem;
        padding-bottom: 3rem;
    }

}


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

@media (max-width: 767.98px) {

    .tpd-hero {
        min-height: 460px;
    }

    .tpd-hero h1 {
        font-size:
            clamp(
                2.7rem,
                15vw,
                4.5rem
            );
    }

    .tpd-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .tpd-primary-btn,
    .tpd-secondary-btn {
        width: 100%;
    }

    .tpd-summary {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

}


@media (max-width: 479.98px) {

    .tpd-gallery {
        grid-auto-rows: 235px;
    }

}


/* ==========================================================
   TOURPLUG DESTINATION EDITORIAL CONTENT
========================================================== */

.tpd-rich-text {
    color: var(--tpd-muted);
    font-size: .98rem;
    line-height: 1.82;
}

.tpd-rich-text > :first-child {
    margin-top: 0;
}

.tpd-rich-text > :last-child {
    margin-bottom: 0;
}

.tpd-rich-text p,
.tpd-rich-text div {
    margin: 0 0 1rem;
}

.tpd-rich-text h2,
.tpd-rich-text h3,
.tpd-rich-text h4 {
    margin: 1.45rem 0 .65rem;
    color: var(--tpd-ink);
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    letter-spacing: -.025em;
}

.tpd-rich-text h2 {
    font-size: 1.65rem;
}

.tpd-rich-text h3 {
    font-size: 1.3rem;
}

.tpd-rich-text h4 {
    font-size: 1.08rem;
}

.tpd-rich-text ul,
.tpd-rich-text ol {
    margin: .8rem 0 1rem;
    padding-left: 1.35rem;
}

.tpd-rich-text li {
    margin-bottom: .45rem;
}

.tpd-rich-text blockquote {
    margin: 1.2rem 0;
    padding: .85rem 1rem;
    border-left: 4px solid var(--tpd-orange);
    background: #fff8f1;
    color: #554b43;
}

.tpd-rich-text a {
    color: var(--tpd-orange-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.tpd-rich-text-inverse,
.tpd-rich-text-inverse h2,
.tpd-rich-text-inverse h3,
.tpd-rich-text-inverse h4,
.tpd-rich-text-inverse a {
    color: #fff;
}

.tpd-rich-text-inverse {
    color: rgba(255,255,255,.86);
}

.tpd-rich-text-inverse blockquote {
    border-left-color: #fff;
    background: rgba(255,255,255,.12);
    color: #fff;
}


/* Hero editorial introduction */

.tpd-hero-intro {
    max-width: 700px;
    margin-top: 1.3rem;
}

.tpd-hero-intro > p,
.tpd-hero-intro .tpd-rich-text {
    margin-bottom: 0;
    color: rgba(255,255,255,.86);
    font-size: 1.08rem;
    line-height: 1.75;
}


/* Full destination description */

.tpd-summary-main .tpd-rich-text {
    max-width: 760px;
    margin-top: 1rem;
}


/* Why visit */

.tpd-editorial-section {
    background: #fff;
}

.tpd-editorial-layout {
    display: grid;
    grid-template-columns:
        minmax(260px, .65fr)
        minmax(0, 1.35fr);
    gap: 4rem;
    align-items: start;
}

.tpd-editorial-heading {
    position: sticky;
    top: 110px;
}

.tpd-editorial-heading h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(2rem, 4vw, 3.15rem);
    font-weight: 820;
    letter-spacing: -.035em;
}

.tpd-editorial-panel {
    position: relative;
    padding: 2rem;
    border: 1px solid var(--tpd-border);
    border-radius: 1.3rem;
    background: var(--tpd-soft);
}

.tpd-editorial-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 1.25rem;
    border-radius: 50%;
    background: #fff0e3;
    color: var(--tpd-orange);
    font-size: 1.35rem;
}


/* Planning */

.tpd-planning-section {
    background: var(--tpd-soft);
}

.tpd-planning-grid {
    display: grid;
    grid-template-columns:
        repeat(
            auto-fit,
            minmax(270px, 1fr)
        );
    gap: 1rem;
}

.tpd-planning-card {
    min-width: 0;
    padding: 1.55rem;
    border: 1px solid var(--tpd-border);
    border-radius: 1.15rem;
    background: #fff;
}

.tpd-planning-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: #fff1e5;
    color: var(--tpd-orange);
    font-size: 1.15rem;
}

.tpd-planning-card h3 {
    margin: 0 0 .8rem;
    color: var(--tpd-ink);
    font-family: "Manrope", sans-serif;
    font-size: 1.12rem;
    font-weight: 800;
}


/* Responsive editorial content */

@media (max-width: 991.98px) {

    .tpd-editorial-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tpd-editorial-heading {
        position: static;
    }

}


@media (max-width: 767.98px) {

    .tpd-hero-intro > p,
    .tpd-hero-intro .tpd-rich-text {
        font-size: .95rem;
    }

    .tpd-editorial-panel,
    .tpd-planning-card {
        padding: 1.25rem;
    }

}
