.homepage-main {
    margin: 0;
    padding: 0
}

.homepage-content {
    padding: var(--lt-section-pad)
}

.homepage-content__inner {
    max-width: var(--lt-max);
    margin: 0 auto;
    padding: 0 var(--lt-container-gutter);
    box-sizing: border-box
}

.hero-slider {
    position: relative;
    width: 100%;
    min-height: min(78vh, 720px);
    height: 78vh;
    max-height: 820px;
    overflow: hidden;
    background: var(--lt-color-navy-dark);
    color: #fff
}

.hero-slider__track {
    position: absolute;
    inset: 0
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1410;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    transition: opacity .8s ease, visibility .8s ease, transform 6.5s ease;
    overflow: hidden
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 1
}

.hero-slide__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    transition: transform 6.5s ease
}

.hero-slide.is-active .hero-slide__media {
    transform: scale(1)
}

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .62) 45%, rgba(0, 0, 0, .72) 100%);
    z-index: 1
}

.hero-slide__logo {
    position: absolute;
    top: 22px;
    right: 28px;
    z-index: 3;
    line-height: 0;
    opacity: .95
}

.hero-slide__logo .custom-logo-link {
    display: inline-block
}

.hero-slide__logo .custom-logo {
    max-height: 72px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .35))
}

.hero-slide__logo-mark {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .9);
    background: rgba(0, 0, 0, .25);
    backdrop-filter: blur(2px);
    text-align: center;
    color: #fff
}

.hero-slide__logo-lt {
    display: block;
    font-family: var(--lt-brand);
    font-size: 1.55rem;
    font-weight: 600;
    letter-spacing: .08em;
    line-height: 1
}

.hero-slide__logo-lt span {
    display: inline-block;
    margin: 0 2px;
    font-size: .95rem
}

.hero-slide__logo-name {
    display: block;
    margin-top: 6px;
    font-family: var(--lt-brand);
    font-size: .65rem;
    letter-spacing: .03em
}

.hero-slide__content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 72px;
    text-align: center
}

.hero-slide__title {
    margin: 0 0 18px;
    font-family: "Literata", serif;
    font-size: clamp(1.75rem, 4.5vw, 58px);
    font-weight: 500;
    font-style: normal;
    line-height: clamp(2.25rem, 5.8vw, 75px);
    letter-spacing: 0;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .35)
}

.hero-slide__title a {
    color: var(--lt-text-on-dark);
    text-decoration: none
}

.hero-slide__title a:hover,
.hero-slide__title a:focus {
    color: var(--lt-text-on-dark);
    opacity: .9
}

.hero-slide__author,
.hero-slide__date {
    margin: 0;
    color: #fff;
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    line-height: 23px;
    letter-spacing: 0;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .4)
}

.hero-slide__author {
    margin-bottom: 6px
}

.hero-slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transform: translateY(-50%);
    transition: opacity .2s ease, color .2s ease
}

.hero-slider__arrow--prev {
    left: 16px
}

.hero-slider__arrow--next {
    right: 16px
}

.hero-slider__arrow:hover,
.hero-slider__arrow:focus {
    background: transparent;
    border: 0;
    color: #fff;
    opacity: .7
}

.hero-slider__arrow svg {
    display: block;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, .45))
}

.hero-slider__thumbs {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 5;
    display: flex;
    gap: 10px
}

.hero-slider__thumb {
    display: block;
    width: 110px;
    height: 72px;
    margin: 0;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, .85);
    border-radius: 0;
    background: rgba(0, 0, 0, .35);
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
    transition: border-color .2s ease, transform .2s ease
}

.hero-slider__thumb:hover,
.hero-slider__thumb:focus {
    border-color: var(--lt-crimson);
    transform: translateY(-2px)
}

.hero-slider__thumb-img {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #222;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform .35s ease
}

.hero-slider__thumb:hover .hero-slider__thumb-img,
.hero-slider__thumb:focus .hero-slider__thumb-img {
    transform: scale(1.08)
}

.hero-slider__dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 4;
    display: flex;
    gap: 10px;
    transform: translateX(-50%)
}

.hero-slider__dot {
    width: 10px;
    height: 10px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 50%;
    background: transparent;
    cursor: pointer
}

.hero-slider__dot.is-active,
.hero-slider__dot:hover,
.hero-slider__dot:focus {
    background: #fff;
    border-color: #fff
}

@media (max-width:991px) {
    .hero-slider {
        min-height: 62vh;
        height: 62vh
    }

    .hero-slide__content {
        padding: 0 64px
    }

    .hero-slider__arrow {
        width: 40px;
        height: 40px
    }

    .hero-slider__arrow--prev {
        left: 12px
    }

    .hero-slider__arrow--next {
        right: 12px
    }

    .hero-slide__logo {
        top: 14px;
        right: 14px
    }

    .hero-slide__logo .custom-logo {
        max-height: 56px
    }

    .hero-slider__thumbs {
        right: 16px;
        bottom: 16px
    }

    .hero-slider__thumb {
        width: 88px;
        height: 58px
    }
}

@media (max-width:600px) {
    .hero-slider {
        min-height: 56vh;
        height: 56vh
    }

    .hero-slide__content {
        padding: 0 48px 70px
    }

    .hero-slider__arrow {
        width: 36px;
        height: 36px
    }

    .hero-slider__arrow svg {
        width: 22px;
        height: 22px
    }

    .hero-slider__arrow--prev {
        left: 8px
    }

    .hero-slider__arrow--next {
        right: 8px
    }

    .hero-slide__title {
        margin-bottom: 14px
    }

    .hero-slide__logo-mark {
        min-width: 70px;
        padding: 8px
    }

    .hero-slide__logo-lt {
        font-size: 1.2rem
    }

    .hero-slider__thumbs {
        right: 12px;
        bottom: 12px;
        gap: 8px
    }

    .hero-slider__thumb {
        width: 64px;
        height: 44px
    }

    .hero-slider__dots {
        bottom: 14px;
        left: 16px;
        transform: none
    }
}

.breaking-news {
    background: var(--lt-color-primary);
    color: #fff;
    padding: var(--lt-section-pad)
}

.breaking-news__inner {
    max-width: var(--lt-max);
    margin: 0 auto;
    padding: 0 var(--lt-container-gutter);
    box-sizing: border-box
}

.breaking-news__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 0 36px
}

.breaking-news__header::before,
.breaking-news__header::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: rgba(255, 255, 255, .85)
}

.breaking-news__heading {
    flex: 0 0 auto
}

.breaking-news__carousel {
    position: relative;
    padding: 0 0 8px
}

.breaking-news__viewport {
    overflow: hidden
}

.breaking-news__track {
    display: flex;
    align-items: stretch;
    gap: 20px;
    transition: transform .45s ease
}

.bn-card {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    min-width: 0;
    box-sizing: border-box
}

.bn-card__media {
    display: block;
    position: relative;
    margin: 0 0 14px;
    aspect-ratio: 288/220;
    overflow: hidden;
    background: rgba(0, 0, 0, .25)
}

.bn-card__img {
    display: block;
    width: 100%;
    height: 100%;
    transform: scale(1);
    transition: transform .35s ease
}

.bn-card__media:hover .bn-card__img,
.bn-card__media:focus .bn-card__img {
    transform: scale(1.05)
}

.bn-card__img--placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .45))
}

.bn-card__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 10px;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    font-family: var(--lt-nav);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-align: right;
    text-transform: uppercase
}

.bn-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 12px
}

.bn-card__tag {
    display: inline-block;
    margin: 0;
    padding: 6px 10px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    font-family: var(--lt-font-body);
    font-size: 12px;
    font-weight: 700;
    font-style: normal;
    line-height: 12px;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .25s ease, border-color .25s ease, color .25s ease
}

.bn-card__tag:hover,
.bn-card__tag:focus {
    background: var(--lt-navy);
    border-color: var(--lt-navy);
    color: #fff
}

.bn-card__title {
    margin: 0;
    font-family: var(--lt-font-display);
    font-size: var(--lt-card-title-size);
    font-weight: var(--lt-card-title-weight);
    font-style: normal;
    line-height: var(--lt-card-title-lh);
    letter-spacing: 0
}

.bn-card__title a {
    color: var(--lt-text-on-dark);
    text-decoration: none
}

.bn-card__title a:hover,
.bn-card__title a:focus {
    color: var(--lt-text-on-dark);
    opacity: .88
}

.bn-card__meta {
    margin-top: auto;
    padding-top: 12px
}

.bn-card__author,
.bn-card__date {
    margin: 0;
    color: var(--lt-text-on-dark);
    font-family: var(--lt-font-body);
    font-size: var(--lt-card-meta-size);
    font-weight: var(--lt-card-meta-weight);
    font-style: normal;
    line-height: var(--lt-card-meta-lh);
    letter-spacing: 0
}

.bn-card__author {
    margin-bottom: 2px
}

.breaking-news__controls {
    display: grid;
    grid-template-columns: 32px 1fr 32px;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    min-height: 32px
}

.breaking-news__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0;
    padding: 0;
    border: 0;
    background: 0 0;
    color: #fff;
    cursor: pointer;
    justify-self: center
}

.breaking-news__nav--prev {
    justify-self: start
}

.breaking-news__nav--next {
    justify-self: end
}

.breaking-news__nav:disabled {
    opacity: .35;
    cursor: default
}

.breaking-news__nav:hover:not(:disabled),
.breaking-news__nav:focus:not(:disabled) {
    background: transparent;
    border-color: transparent;
    color: #fff;
    opacity: .8
}

.breaking-news__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 0
}

.breaking-news__dot {
    width: 8px;
    height: 8px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    cursor: pointer
}

.breaking-news__dot.is-active {
    background: #fff
}

.breaking-news__cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px
}

.breaking-news__cta,
.category-tabs__cta,
.btl-section__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--lt-navy);
    color: var(--lt-white) !important;
    padding: 14px 22px;
    font-family: var(--lt-font-body);
    font-size: var(--lt-btn-size);
    font-weight: 700;
    line-height: var(--lt-btn-lh);
    letter-spacing: var(--lt-btn-track);
    text-decoration: none;
    text-transform: uppercase;
    transition: background .25s ease, color .25s ease, border-color .25s ease;
    border: 1px solid var(--lt-navy) !important;
    outline: 0;
    box-shadow: none
}

.breaking-news__cta:hover,
.breaking-news__cta:focus,
.category-tabs__cta:hover,
.category-tabs__cta:focus,
.btl-section__cta:hover,
.btl-section__cta:focus {
    background: var(--lt-white) !important;
    color: var(--lt-navy) !important;
    opacity: 1;
    border-color: var(--lt-navy) !important;
    outline: 0;
    box-shadow: none
}

.breaking-news__cta:hover,
.breaking-news__cta:focus,
.btl-section__cta:hover,
.btl-section__cta:focus {
    border-color: var(--lt-white) !important
}

@media (max-width:991px) {
    .breaking-news__controls {
        margin-top: 22px
    }
}

@media (max-width:600px) {
    .breaking-news__cta {
        text-align: center;
        justify-content: center
    }
}

.category-tabs {
    background: #fff;
    color: var(--lt-text-dark);
    padding: var(--lt-section-pad)
}

.category-tabs__inner {
    max-width: var(--lt-max);
    margin: 0 auto;
    padding: 0 var(--lt-container-gutter);
    box-sizing: border-box
}

.category-tabs__nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    margin: 0 0 36px
}

.category-tabs__tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    margin: 0;
    padding: 12px 10px;
    border: 1px solid var(--lt-navy);
    border-radius: 0;
    background: var(--lt-white);
    color: var(--lt-navy);
    font-family: var(--lt-font-body);
    font-size: var(--lt-label-size) !important;
    font-weight: 700;
    letter-spacing: var(--lt-label-track);
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer
}

.category-tabs__tab.is-active,
.category-tabs__tab[aria-selected=true] {
    background: var(--lt-navy);
    border-color: var(--lt-navy);
    color: var(--lt-white)
}

.category-tabs__tab:hover:not(.is-active),
.category-tabs__tab:focus:not(.is-active) {
    background: var(--lt-navy);
    border-color: var(--lt-navy);
    color: var(--lt-white)
}

.category-tabs__tab.is-active:hover,
.category-tabs__tab.is-active:focus,
.category-tabs__tab[aria-selected=true]:hover,
.category-tabs__tab[aria-selected=true]:focus {
    background: var(--lt-navy);
    border-color: var(--lt-navy);
    color: var(--lt-white)
}

.category-tabs__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 0 32px
}

.category-tabs__header::before,
.category-tabs__header::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: var(--lt-navy)
}

.category-tabs__heading {
    flex: 0 1 auto
}

.category-tabs__panel {
    display: none
}

.category-tabs__panel.is-active {
    display: block
}

.category-tabs__viewport {
    overflow: hidden
}

.category-tabs__track {
    display: flex;
    align-items: stretch;
    gap: 24px;
    transition: transform .45s ease
}

.ct-card {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    min-width: 0;
    box-sizing: border-box
}

.ct-card__media {
    display: block;
    position: relative;
    margin: 0 0 14px;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #ececec
}

.ct-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.ct-card__img--placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ddd, #bbb)
}

.ct-card__bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(40, 20, 12, .72);
    color: #fff
}

.ct-card__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(247, 239, 137, .9);
    color: var(--lt-color-yellow);
    flex: 0 0 auto
}

.ct-card__bar-text {
    font-family: var(--lt-brand);
    font-size: .82rem;
    font-weight: 500;
    line-height: 1.2
}

.ct-card__tag {
    display: inline-block;
    align-self: flex-start;
    width: auto;
    max-width: 100%;
    margin: 0 0 10px;
    padding: 6px 10px;
    border: 1px solid var(--lt-navy);
    background: transparent;
    color: var(--lt-navy);
    font-family: var(--lt-font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 12px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .25s ease, border-color .25s ease, color .25s ease
}

.ct-card__tag:hover,
.ct-card__tag:focus {
    background: var(--lt-navy);
    border-color: var(--lt-navy);
    color: var(--lt-white)
}

.ct-card__title {
    margin: 0;
    font-family: var(--lt-brand);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--lt-text-dark)
}

.ct-card__title a {
    color: inherit;
    text-decoration: none
}

.ct-card__title a:hover,
.ct-card__title a:focus {
    color: var(--lt-color-primary)
}

.ct-card__meta {
    margin-top: auto;
    padding-top: 12px
}

.ct-card__author,
.ct-card__date {
    margin: 0;
    color: #595959;
    font-family: var(--lt-nav);
    font-size: .88rem;
    line-height: 1.4
}

.ct-card__author {
    margin-bottom: 2px
}

.category-tabs__controls {
    display: grid;
    grid-template-columns: 32px 1fr 32px;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
    min-height: 32px
}

.category-tabs__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0;
    padding: 0;
    border: 0;
    background: 0 0;
    color: var(--lt-navy);
    cursor: pointer;
    justify-self: center
}

.category-tabs__arrow--prev {
    justify-self: start
}

.category-tabs__arrow--next {
    justify-self: end
}

.category-tabs__arrow:disabled {
    opacity: .35;
    cursor: default
}

.category-tabs__arrow:hover:not(:disabled),
.category-tabs__arrow:focus:not(:disabled) {
    background: transparent;
    border-color: transparent;
    color: var(--lt-navy);
    opacity: .75;
    outline: 0
}

.category-tabs__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 0
}

.category-tabs__dot {
    width: 8px;
    height: 8px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer
}

.category-tabs__dot.is-active {
    background: var(--lt-color-primary)
}

.category-tabs__cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px
}

.category-tabs__promo {
    margin-top: 40px
}

.category-tabs__promo-link {
    display: block;
    line-height: 0
}

.category-tabs__promo-img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%
}

@media (max-width:991px) {
    .category-tabs__nav {
        flex-wrap: wrap;
        gap: 10px
    }

    .category-tabs__tab {
        flex: 1 1 calc(50% - 10px);
        padding: 10px 14px;
        font-size: .68rem
    }

    .category-tabs__promo {
        margin-top: 32px
    }
}

@media (max-width:600px) {
    .category-tabs__nav {
        display: grid;
        grid-template-columns: 1.55fr 1fr;
        gap: 12px;
        margin: 0 0 28px
    }

    .category-tabs__tab {
        width: auto;
        min-height: 48px;
        padding: 12px 10px;
        border-width: 2px;
        font-size: .68rem;
        text-align: center;
        justify-content: center
    }

    .category-tabs__tab:nth-child(1),
    .category-tabs__tab:nth-child(2),
    .category-tabs__tab:nth-child(5) {
        grid-column: 1/-1
    }

    .category-tabs__tab:nth-child(3),
    .category-tabs__tab:nth-child(4) {
        grid-column: auto
    }

    .category-tabs__cta {
        text-align: center;
        justify-content: center
    }

    .category-tabs__promo {
        margin-top: 28px
    }
}

.btl-section {
    background: var(--lt-color-primary);
    color: #fff;
    padding: var(--lt-section-pad)
}

.btl-section__inner {
    max-width: var(--lt-max);
    margin: 0 auto;
    padding: 0 var(--lt-container-gutter);
    box-sizing: border-box
}

.btl-section__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 0 36px
}

.btl-section__header::before,
.btl-section__header::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: rgba(255, 255, 255, .85)
}

.btl-section__heading {
    flex: 0 0 auto
}

.btl-feature {
    position: relative;
    padding: 0 36px 8px
}

.btl-feature__viewport {
    overflow: hidden
}

.btl-feature__track {
    display: flex;
    align-items: stretch;
    gap: 24px;
    transition: transform .45s ease
}

.btl-feature__card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    min-width: 0;
    box-sizing: border-box
}

.btl-feature__media {
    display: block;
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: rgba(0, 0, 0, .2)
}

.btl-feature__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.btl-feature__img--placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .4))
}

.btl-feature__box {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 88%;
    max-width: 420px;
    margin: -56px 0 0 16px;
    padding: 18px 18px 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
    box-sizing: border-box
}

.btl-feature__tag {
    display: inline-block;
    align-self: flex-start;
    width: auto;
    max-width: 100%;
    margin: 0 0 10px;
    padding: 5px 9px;
    border: 1px solid #333;
    background: transparent;
    color: #222;
    font-family: var(--lt-nav);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .05em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .25s ease, border-color .25s ease, color .25s ease
}

.btl-feature__tag:hover,
.btl-feature__tag:focus {
    background: var(--lt-navy);
    border-color: var(--lt-navy);
    color: var(--lt-white)
}

.btl-feature__title {
    margin: 0;
    font-family: var(--lt-brand);
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--lt-navy)
}

.btl-feature__title a {
    color: inherit;
    text-decoration: none
}

.btl-feature__title a:hover,
.btl-feature__title a:focus {
    color: var(--lt-color-primary)
}

.btl-feature__meta {
    margin-top: auto;
    padding-top: 10px
}

.btl-feature__author,
.btl-feature__date {
    margin: 0;
    color: #4a5560;
    font-family: var(--lt-nav);
    font-size: .85rem;
    line-height: 1.4
}

.btl-feature__author {
    margin-bottom: 2px
}

.btl-feature__nav {
    position: absolute;
    top: 38%;
    z-index: 2;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0;
    padding: 0;
    border: 0;
    background: 0 0;
    color: #fff;
    cursor: pointer
}

.btl-feature__nav--prev {
    left: 0
}

.btl-feature__nav--next {
    right: 0
}

.btl-feature__nav:hover:not(:disabled),
.btl-feature__nav:focus:not(:disabled) {
    background: transparent;
    border-color: transparent;
    color: #fff;
    opacity: .8
}

.btl-feature__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 28px 0 0
}

.btl-feature__dot {
    width: 8px;
    height: 8px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    cursor: pointer
}

.btl-feature__dot.is-active {
    background: #fff
}

.btl-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .45)
}

.btl-list__item {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0 18px;
    border-right: 1px solid rgba(255, 255, 255, .35);
    box-sizing: border-box
}

.btl-list__item:first-child {
    padding-left: 0
}

.btl-list__item:last-child {
    padding-right: 0;
    border-right: 0
}

.btl-list__tag {
    display: inline-block;
    align-self: flex-start;
    width: auto;
    max-width: 100%;
    margin: 0 0 12px;
    padding: 5px 9px;
    border: 1px solid rgba(255, 255, 255, .95);
    background: transparent;
    color: #fff;
    font-family: var(--lt-nav);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .05em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .25s ease, border-color .25s ease, color .25s ease
}

.btl-list__tag:hover,
.btl-list__tag:focus {
    background: var(--lt-navy);
    border-color: var(--lt-navy);
    color: var(--lt-blush-soft)
}

.btl-list__title {
    margin: 0;
    font-family: var(--lt-brand);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3
}

.btl-list__title a {
    color: #fff;
    text-decoration: none
}

.btl-list__title a:hover,
.btl-list__title a:focus {
    color: #fff;
    opacity: .85
}

.btl-list__meta {
    margin-top: auto;
    padding-top: 12px
}

.btl-list__author,
.btl-list__date {
    margin: 0;
    color: rgba(255, 255, 255, .92);
    font-family: var(--lt-nav);
    font-size: .85rem;
    line-height: 1.4
}

.btl-list__author {
    margin-bottom: 2px
}

.btl-section__cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 36px
}

@media (max-width:991px) {
    .btl-feature {
        padding: 0 30px 8px
    }

    .btl-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 0
    }

    .btl-list__item {
        padding: 0 16px 20px;
        border-right: 1px solid rgba(255, 255, 255, .35)
    }

    .btl-list__item:nth-child(2n) {
        padding-right: 0;
        border-right: 0
    }

    .btl-list__item:nth-child(1),
    .btl-list__item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, .25);
        margin-bottom: 8px
    }

    .btl-list__item:nth-child(odd) {
        padding-left: 0
    }
}

@media (max-width:767px) {
    .btl-feature {
        padding: 0 28px 8px
    }

    .btl-feature__box {
        width: 92%;
        margin: -48px auto 0;
        max-width: none
    }

    .btl-feature__nav {
        top: 30%
    }

    .btl-list {
        grid-template-columns: 1fr;
        border-top: 1px solid rgba(255, 255, 255, .45)
    }

    .btl-list__item,
    .btl-list__item:nth-child(odd),
    .btl-list__item:nth-child(2n),
    .btl-list__item:first-child,
    .btl-list__item:last-child {
        padding: 0 0 22px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .25);
        margin: 0 0 22px
    }

    .btl-list__item:last-child {
        border-bottom: 0;
        margin-bottom: 0;
        padding-bottom: 0
    }

    .btl-section__cta {
        text-align: center;
        justify-content: center
    }
    .guest-posts__banner{
        text-align: center;
    }
}

.guest-posts {
    background: var(--lt-white);
    color: var(--lt-text);
    padding: var(--lt-section-pad)
}

.guest-posts__inner {
    max-width: var(--lt-max);
    margin: 0 auto;
    padding: 0 var(--lt-container-gutter);
    box-sizing: border-box
}

.guest-posts__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 0 36px
}

.guest-posts__header::before,
.guest-posts__header::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: var(--lt-navy)
}

.guest-posts__heading {
    flex: 0 0 auto
}

.guest-posts__grid {
    display: grid;
    grid-template-columns: 1.15fr .95fr;
    gap: 36px;
    align-items: start
}

.gp-feature__media,
.gp-list__media {
    display: block;
    position: relative;
    overflow: hidden;
    background: var(--lt-gray-soft);
    line-height: 0
}

.gp-feature__media {
    aspect-ratio: 16/10;
    margin: 0 0 18px
}

.gp-feature__img,
.gp-list__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform .45s ease
}

.gp-feature__media:hover .gp-feature__img,
.gp-list__media:hover .gp-list__img {
    transform: scale(1.08)
}

.gp-feature__img--placeholder,
.gp-list__img--placeholder {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 120px;
    background: linear-gradient(135deg, #ddd, #bbb)
}

.gp-feature__tag,
.gp-list__tag {
    display: inline-block;
    margin: 0 0 10px;
    padding: 5px 9px;
    border: 1px solid var(--lt-navy);
    background: transparent;
    color: var(--lt-navy);
    font-family: var(--lt-font-body);
    font-size: var(--lt-label-size);
    font-weight: 700;
    line-height: var(--lt-label-lh);
    letter-spacing: var(--lt-label-track);
    text-decoration: none;
    text-transform: uppercase;
    transition: background .25s ease, border-color .25s ease, color .25s ease
}

.gp-feature__tag:hover,
.gp-feature__tag:focus,
.gp-list__tag:hover,
.gp-list__tag:focus {
    background: var(--lt-navy);
    border-color: var(--lt-navy);
    color: var(--lt-white)
}

.gp-feature__title {
    margin: 0 0 12px;
    color: var(--lt-navy);
    font-family: var(--lt-font-display);
    font-size: clamp(1.2rem, 2vw, var(--lt-h3-size));
    font-weight: 500;
    line-height: 1.3
}

.gp-feature__title a,
.gp-list__title a {
    color: inherit;
    text-decoration: none
}

.gp-feature__title a:hover,
.gp-feature__title a:focus,
.gp-list__title a:hover,
.gp-list__title a:focus {
    color: var(--lt-crimson)
}

.gp-feature__author,
.gp-feature__date,
.gp-list__author,
.gp-list__date {
    margin: 0;
    color: var(--lt-gray-medium);
    font-family: var(--lt-font-body);
    font-size: var(--lt-ui-size);
    line-height: 1.45
}

.gp-feature__author,
.gp-list__author {
    margin-bottom: 2px
}

.gp-list {
    display: flex;
    flex-direction: column
}

.gp-list__item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    align-items: start;
    padding: 0 0 20px;
    margin: 0 0 20px;
    border-bottom: 1px solid var(--lt-gray-light)
}

.gp-list__item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0
}

.gp-list__media {
    aspect-ratio: 1/1;
    width: 120px
}

.gp-list__title {
    margin: 0 0 10px;
    color: var(--lt-navy);
    font-family: var(--lt-font-display);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.3
}
.guest-posts{
    padding-bottom: 120px;
}
.guest-posts__cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 36px
}

.guest-posts__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--lt-navy);
    color: var(--lt-white) !important;
    padding: 14px 22px;
    font-family: var(--lt-font-body);
    font-size: var(--lt-btn-size);
    font-weight: 700;
    line-height: var(--lt-btn-lh);
    letter-spacing: var(--lt-btn-track);
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid var(--lt-btn-hover-color) !important;
    transition: background .25s ease, color .25s ease
}

.guest-posts__cta:hover,
.guest-posts__cta:focus {
    background: var(--lt-white) !important;
    color: var(--lt-btn-hover-color) !important;
    border: 1px solid var(--lt-btn-hover-color) !important;
}

.guest-posts__banner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    margin-top: 36px;
    padding: 40px;
    background: var(--lt-navy);
    color: var(--lt-white);
    box-sizing: border-box
}

.guest-posts__banner-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 2px solid var(--lt-crimson);
    border-radius: 50%;
    background: transparent;
    color: var(--lt-crimson);
    flex: 0 0 auto;
    margin: 0 auto;
}

.guest-posts__banner-title {
    margin: 0 0 8px;
    color: var(--lt-blush);
    font-family: var(--lt-font-display);
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 500;
    letter-spacing: .02em;
    line-height: 1.2;
    text-transform: uppercase
}

.guest-posts__banner-text {
    margin: 0;
    max-width: 620px;
    color: var(--lt-blush);
    font-family: var(--lt-font-body);
    font-size: var(--lt-ui-size);
    line-height: 1.55
}

.guest-posts__banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--lt-crimson);
    color: var(--lt-white) !important;
    padding: 10px 32px;
    font-family: var(--lt-font-body);
    font-size: var(--lt-btn-size);
    font-weight: 700;
    line-height: var(--lt-btn-lh);
    letter-spacing: var(--lt-btn-track);
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background .25s ease, color .25s ease;
    border: 1px solid var(--lt-btn-hover-color) !important;
}

.guest-posts__banner-btn:hover,
.guest-posts__banner-btn:focus {
    background: var(--lt-blush) !important;
    color: var(--lt-btn-hover-color) !important;
    border: 1px solid var(--lt-btn-hover-color) !important;
}

@media (max-width:991px) {
    .guest-posts__grid {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .guest-posts__banner {
        grid-template-columns: auto 1fr;
        gap: 18px
    }

    .guest-posts__banner-btn {
        grid-column: 1/-1;
        justify-self: start
    }
}

@media (max-width:600px) {
    .gp-list__item {
        grid-template-columns: 88px 1fr;
        gap: 12px
    }

    .gp-list__media {
        width: 88px
    }

    .guest-posts__cta {
        justify-content: center;
        text-align: center
    }

    .guest-posts__banner {
        grid-template-columns: 1fr;
        padding: 22px 18px
    }

    .guest-posts__banner-btn {
        width: 100%;
        justify-content: center
    }
}