@import "https://cdn.jsdelivr.net/npm/@fontsource/inter@latest/300.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/inter@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/inter@latest/700.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/red-hat-display@latest/300.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/red-hat-display@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/red-hat-display@latest/700.css";

body {
    margin: 0;
    padding: 0;
    min-height: 100vh
}

.hd-plate {
    box-sizing: border-box;
    background-color: #f4f7f6;
    background-image: radial-gradient(circle at 1px 1px, #4363591a 1px, transparent 0);
    background-size: 24px 24px;
    border-bottom: 2px solid #77ACA1;
    box-shadow: -1px 6px 28px 1px #43635917;
    overflow: hidden
}

.hd-top {
    box-sizing: border-box;
    max-width: 1500px;
    margin: 0 auto;
    padding: 32px 64px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px
}

.brand-pod {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none
}

.brand-logo-cell {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1.5px solid #77ACA1;
    box-shadow: -1px 1px 6px 1px #4363590f 0 0 0 3px #588a811f;
    border-radius: 0
}

.brand-logo-cell img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block
}

.brand-name {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #436359;
    letter-spacing: -.03em;
    line-height: 1.1
}

.hd-action-cell {
    display: flex;
    align-items: center;
    gap: 16px
}

.hd-contact-link {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #436359;
    text-decoration: none;
    border: 1.5px solid #588A81;
    border-radius: 4px;
    padding: 8px 16px;
    background-color: transparent;
    position: relative;
    overflow: hidden;
    display: inline-block;
    transition: color .15s ease-out, border-color .15s ease-out
}

.hd-contact-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background-color: #436359;
    transition: height .18s ease-out;
    z-index: 0
}

.hd-contact-link:hover::before {
    height: 100%
}

.hd-contact-link:hover {
    color: #fff;
    border-color: #436359
}

.hd-contact-link span {
    position: relative;
    z-index: 1
}

.hd-contact-link:focus {
    outline: none;
    transform: scale(1.02)
}

.hd-nav-bar {
    box-sizing: border-box;
    background: linear-gradient(90deg, #436359 0%, #588A81 60%, #77ACA1 100%)
}

.hd-nav-deck {
    box-sizing: border-box;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 64px;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap
}

.hd-nav-deck a {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffffe0;
    text-decoration: none;
    padding: 16px 32px;
    display: inline-flex;
    align-items: center;
    border-right: 1px solid #ffffff1f;
    position: relative;
    overflow: hidden;
    transition: color .12s ease-out, background-color .12s ease-out
}

.hd-nav-deck a:first-child {
    border-left: 1px solid #ffffff1f
}

.hd-nav-deck a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
    transform: scaleX(0);
    transition: transform .15s ease-out;
    transform-origin: left center
}

.hd-nav-deck a:hover {
    color: #fff;
    background-color: #ffffff1a
}

.hd-nav-deck a:hover::after {
    transform: scaleX(1)
}

.hd-nav-deck a:focus {
    outline: none;
    transform: scale(1.02);
    color: #fff
}

@media (max-width: 1024px) {
    .hd-top {
        padding: 32px 32px 16px
    }

    .hd-nav-deck {
        padding: 0 32px
    }

    .hd-nav-deck a {
        padding: 16px
    }
}

@media (max-width: 640px) {
    .hd-top {
        padding: 16px 16px 8px;
        flex-direction: column;
        align-items: flex-start
    }

    .brand-pod {
        flex-direction: row;
        align-items: center
    }

    .hd-nav-deck {
        padding: 0 16px
    }

    .hd-nav-deck a {
        padding: 16px 8px;
        font-size: 16px
    }
}

@media (max-width: 360px) {
    .hd-nav-deck a {
        padding: 16px 8px
    }
}

.ft-plate {
    box-sizing: border-box;
    background-color: #f4f7f6;
    border-top: 2px solid #77ACA1
}

.ft-upper {
    box-sizing: border-box;
    max-width: 1500px;
    margin: 0 auto;
    padding: 64px 64px 32px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px
}

.ft-col {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ft-col-label {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #436359;
    letter-spacing: -.01em;
    line-height: 1.3;
    padding-bottom: 8px;
    border-bottom: 1.5px solid #77ACA1
}

.ft-brand-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #3a524a;
    line-height: 1.6
}

.ft-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ft-nav-list li a {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #436359;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
    transition: border-color .18s ease, color .18s ease
}

.ft-nav-list li a:hover {
    color: #588A81;
    border-bottom-color: #77ACA1
}

.ft-nav-list li a:focus {
    outline: none;
    transform: scale(1.02)
}

.ft-contact-item {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #3a524a;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 8px
}

.ft-contact-item a {
    color: #436359;
    text-decoration: underline;
    transition: color .15s ease-out
}

.ft-contact-item a:hover {
    color: #588A81
}

.ft-contact-item a:focus {
    outline: none;
    transform: scale(1.02)
}

.ft-legal-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ft-legal-list li a {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #436359;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
    transition: border-color .18s ease, color .18s ease
}

.ft-legal-list li a:hover {
    color: #588A81;
    border-bottom-color: #77ACA1
}

.ft-legal-list li a:focus {
    outline: none;
    transform: scale(1.02)
}

.ft-divider {
    max-width: 1500px;
    margin: 0 auto;
    border: none;
    border-top: 1px solid #77ACA1;
    opacity: .4
}

.ft-bottom {
    box-sizing: border-box;
    max-width: 1500px;
    margin: 0 auto;
    padding: 32px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap
}

.ft-copy {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #3a524a;
    line-height: 1.6
}

.ft-logo-cell {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1.5px solid #77ACA1;
    box-shadow: -1px 1px 6px 1px #4363590f 0 0 0 3px #588a811a;
    border-radius: 0
}

.ft-logo-cell img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block
}

@media (max-width: 1024px) {
    .ft-upper {
        grid-template-columns: 1fr 1fr;
        padding: 64px 32px 32px;
        gap: 32px
    }

    .ft-bottom {
        padding: 32px
    }
}

@media (max-width: 640px) {
    .ft-upper {
        grid-template-columns: 1fr;
        padding: 32px 16px 16px;
        gap: 32px
    }

    .ft-bottom {
        padding: 32px 16px;
        flex-direction: column;
        align-items: flex-start
    }
}

@media (max-width: 360px) {
    .ft-upper {
        padding: 32px 8px 16px
    }

    .ft-bottom {
        padding: 32px 8px
    }
}

.ck-tray {
    position: fixed;
    top: 32px;
    right: 32px;
    width: 360px;
    background-color: #fff;
    border: 1.5px solid #77ACA1;
    border-radius: 4px;
    box-shadow: -1px 10px 48px 1px #4363591a;
    padding: 32px;
    box-sizing: border-box;
    z-index: 1500;
    transform: translateX(calc(100% + 64px));
    transition: transform .22s ease-out
}

.ck-tray.open {
    transform: translateX(0)
}

.ck-msg {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #2e4039;
    line-height: 1.6;
    margin: 0 0 16px
}

.ck-msg a {
    color: #436359;
    text-decoration: underline
}

.ck-msg a:hover {
    color: #588A81
}

.ck-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.ck-accept {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #436359;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    transition: color .15s ease-out
}

.ck-accept:hover {
    color: #588A81
}

.ck-accept:focus {
    outline: none;
    transform: scale(1.02)
}

.ck-decline {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #3a524a;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    transition: color .15s ease-out
}

.ck-decline:hover {
    color: #77ACA1
}

.ck-decline:focus {
    outline: none;
    transform: scale(1.02)
}

@media (max-width: 640px) {
    .ck-tray {
        width: calc(100vw - 32px);
        right: 16px;
        top: 16px
    }
}

@media (max-width: 360px) {
    .ck-tray {
        width: calc(100vw - 16px);
        right: 8px;
        top: 8px;
        padding: 16px
    }
}

.policy-article {
    max-width: 1500px;
    margin: 0 auto;
    padding: 64px 32px
}

.policy-article p {
    font-size: 16px;
    line-height: 1.9;
    color: #2c3e35;
    margin-bottom: 16px
}

.policy-article ul,
.policy-article ol {
    padding-left: 32px;
    margin-bottom: 16px
}

.policy-article li {
    font-size: 16px;
    line-height: 1.6;
    color: #2c3e35;
    margin-bottom: 8px
}

.policy-article ul li::marker {
    color: #436359
}

.policy-article ol li::marker {
    color: #436359;
    font-weight: 600
}

.policy-article a {
    color: #436359;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color .15s ease-out, text-decoration-color .15s ease-out
}

.policy-article a:hover {
    color: #588A81;
    text-decoration-color: #77ACA1
}

.policy-article a:visited {
    color: #588A81
}

.policy-article table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 32px;
    font-size: 16px;
    box-shadow: -1px 1px 6px 1px #4363590f;
    border-radius: 4px;
    overflow: hidden
}

.policy-article thead {
    background-color: #436359
}

.policy-article thead th {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -.01em;
    padding: 16px;
    text-align: left;
    line-height: 1.3
}

.policy-article tbody tr {
    border-bottom: 1px solid #4363591f;
    transition: background-color .1s ease
}

.policy-article tbody tr:last-child {
    border-bottom: none
}

.policy-article tbody tr:nth-child(even) {
    background-color: #77aca10f
}

.policy-article tbody tr:hover {
    background-color: #588a811a
}

.policy-article td {
    padding: 16px;
    color: #2c3e35;
    line-height: 1.6;
    vertical-align: top
}

.policy-article th {
    padding: 16px;
    line-height: 1.3
}

.policy-article div {
    margin-bottom: 16px
}

@media (max-width: 1024px) {
    .policy-article {
        padding: 64px 32px
    }
}

@media (max-width: 640px) {
    .policy-article {
        padding: 32px 16px
    }

    .policy-article table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

    .policy-article ul,
    .policy-article ol {
        padding-left: 16px
    }
}

@media (max-width: 360px) {
    .policy-article {
        padding: 32px 8px
    }
}

.bld {
    max-width: 1500px;
    margin: 0 auto;
    overflow-x: clip
}

.bld .art_band {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    padding: 32px 64px;
    background: linear-gradient(135deg, #436359 0%, #77ACA1 100%);
    position: relative;
    overflow: hidden
}

.bld .art_band::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    background: #4363594d;
    pointer-events: none
}

.bld .art_band_text {
    flex: 1;
    z-index: 1
}

.bld .art_tag {
    display: inline-block;
    background: #ffffff2e;
    color: #fff;
    font-size: 16px;
    letter-spacing: .08em;
    padding: 8px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
    text-transform: uppercase
}

.bld .art_h1 {
    font-size: 44px;
    line-height: 1.1;
    color: #fff;
    font-weight: 700;
    letter-spacing: -.02em;
    margin: 0 0 16px
}

.bld .art_meta_row {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap
}

.bld .art_meta_item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    color: #ffffffd9;
    font-size: 16px
}

.bld .art_meta_item svg {
    flex-shrink: 0
}

.bld .art_img_wrap {
    width: 380px;
    flex-shrink: 0;
    height: 260px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: -1px 10px 48px 1px #4363591a
}

.bld .art_img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.7) sepia(0.3);
    mix-blend-mode: luminosity
}

.bld .art_img_tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #4363598c 0%, #77aca159 100%);
    border-radius: 22px
}

.bld .art_deco_bg {
    position: absolute;
    right: 340px;
    top: -40px;
    width: 220px;
    height: 220px;
    border-radius: 38px;
    background: #ffffff0d;
    transform: rotate(20deg);
    pointer-events: none
}

.bld .art_divider_a {
    height: 3px;
    background: linear-gradient(to right, #436359 0%, transparent 70%);
    margin: 0
}

.bld .art_body_wrap {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 64px;
    padding: 64px;
    background: #fff
}

.bld .art_pull {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 32px
}

.bld .art_pull_quote {
    flex-shrink: 0;
    width: 180px;
    font-size: 24px;
    font-weight: 700;
    color: #436359;
    line-height: 1.3;
    border-top: 3px solid #77ACA1;
    padding-top: 16px
}

.bld .art_body_text {
    flex: 1
}

.bld .art_body_text p {
    font-size: 16px;
    line-height: 1.9;
    color: #2a3830;
    margin: 0 0 16px
}

.bld .art_body_text h2 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    color: #436359;
    letter-spacing: -.01em;
    margin: 32px 0 16px
}

.bld .art_body_text h3 {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: #588A81;
    margin: 32px 0 16px
}

.bld .art_body_text h4 {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
    color: #436359;
    margin: 16px 0 8px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.bld .art_body_text small {
    font-size: 16px;
    color: #588A81;
    display: block;
    margin-bottom: 8px
}

.bld .art_body_text code {
    background: #eef4f2;
    color: #436359;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 16px
}

.bld .art_body_text ul {
    margin: 0 0 16px;
    padding-left: 32px
}

.bld .art_body_text li {
    font-size: 16px;
    line-height: 1.9;
    color: #2a3830;
    margin-bottom: 8px
}

.bld .art_body_text a {
    color: #436359;
    text-decoration: underline !important;
    text-decoration-thickness: 3px !important;
    text-underline-offset: 3px;
    font-weight: 600;
    transition: color .15s ease-out
}

.bld .art_body_text a:hover {
    color: #77ACA1
}

.bld .art_sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.bld .art_stat_card {
    background: #f2f7f5;
    border-radius: 22px;
    padding: 32px;
    box-shadow: -1px 6px 28px 1px #43635917
}

.bld .art_stat_num {
    font-size: 44px;
    font-weight: 700;
    color: #436359;
    line-height: 1.1;
    letter-spacing: -.03em
}

.bld .art_stat_label {
    font-size: 16px;
    color: #588A81;
    margin-top: 8px;
    line-height: 1.6
}

.bld .art_res_grid {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.bld .art_res_card {
    background: #fff;
    border-radius: 22px;
    padding: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    box-shadow: -1px 1px 6px 1px #4363590f;
    transition: box-shadow .2s ease-out
}

.bld .art_res_card:hover {
    box-shadow: -1px 6px 28px 1px #43635917
}

.bld .art_res_icon {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    background: linear-gradient(160deg, #436359 0%, #77ACA1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.bld .art_res_info {
    flex: 1
}

.bld .art_res_name {
    font-size: 16px;
    font-weight: 600;
    color: #2a3830;
    line-height: 1.3
}

.bld .art_res_meta {
    font-size: 16px;
    color: #588A81;
    margin-top: 4px
}

.bld .art_res_dl {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #436359;
    font-weight: 600;
    text-decoration: none !important;
    padding: 8px 16px;
    border-radius: 4px;
    border: 2px solid #436359;
    background: transparent;
    transition: background .18s ease-out, color .18s ease-out;
    position: relative;
    overflow: hidden
}

.bld .art_res_dl::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #436359;
    transition: height .18s ease-out;
    z-index: 0
}

.bld .art_res_dl:hover::after {
    height: 100%
}

.bld .art_res_dl span {
    position: relative;
    z-index: 1
}

.bld .art_res_dl:hover {
    color: #fff
}

.bld .art_divider_b {
    height: 2px;
    background: linear-gradient(to right, #77ACA1 0%, transparent 60%);
    margin: 0 64px
}

.bld .art_rating_sec {
    padding: 64px;
    background: linear-gradient(0deg, #f2f7f5 0%, #fff 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.bld .art_rating_left {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.bld .art_rating_hed {
    font-size: 32px;
    font-weight: 700;
    color: #436359;
    line-height: 1.3;
    letter-spacing: -.01em;
    margin: 0
}

.bld .art_rating_sub {
    font-size: 16px;
    color: #588A81;
    line-height: 1.6;
    margin: 0
}

.bld .art_stars_wrap {
    margin-top: 8px
}

.bld .art_rating_right {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.bld .art_like_btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 4px;
    border: 2px solid #436359;
    background: transparent;
    color: #436359;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .15s ease-out
}

.bld .art_like_btn::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #436359;
    transition: height .2s ease-out;
    z-index: 0
}

.bld .art_like_btn:hover::after {
    height: 100%
}

.bld .art_like_btn:hover {
    color: #fff
}

.bld .art_like_btn svg,
.bld .art_like_btn span {
    position: relative;
    z-index: 1
}

.bld .art_like_count {
    font-size: 44px;
    font-weight: 700;
    color: #436359;
    line-height: 1.1;
    letter-spacing: -.03em
}

.bld .art_like_label {
    font-size: 16px;
    color: #588A81;
    line-height: 1.6
}

.bld .art_views_row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #fff;
    border-radius: 22px;
    box-shadow: -1px 1px 6px 1px #4363590f
}

.bld .art_views_num {
    font-size: 32px;
    font-weight: 700;
    color: #588A81;
    line-height: 1.1;
    letter-spacing: -.02em
}

.bld .art_views_label {
    font-size: 16px;
    color: #436359;
    line-height: 1.6
}

.bld .art_deco_line_a {
    width: 80px;
    height: 3px;
    background: #77ACA1;
    border-radius: 0;
    margin-bottom: 16px
}

.bld .art_deco_line_b {
    width: 40px;
    height: 3px;
    background: #436359;
    border-radius: 0;
    margin-bottom: 8px
}

.bld .art_tags_sec {
    padding: 32px 64px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    border-top: 2px solid #f2f7f5
}

.bld .art_tag_label {
    font-size: 16px;
    font-weight: 700;
    color: #436359;
    text-transform: uppercase;
    letter-spacing: .08em
}

.bld .art_tag_pill {
    display: inline-block;
    background: #eef4f2;
    color: #436359;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    transition: background .15s ease-out, color .12s ease
}

.bld .art_tag_pill:hover {
    background: #436359;
    color: #fff
}

@keyframes art_fadein {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.bld .art_band_text {
    animation: art_fadein .5s ease-out both
}

.bld .art_img_wrap {
    animation: art_fadein .5s .15s ease-out both
}

.bld .art_pull {
    animation: art_fadein .5s .1s ease-out both
}

.bld .art_sidebar .art_stat_card {
    animation: art_fadein .5s .2s ease-out both
}

.bld .art_sidebar .art_res_grid {
    animation: art_fadein .5s .3s ease-out both
}

.bld .art_rating_left {
    animation: art_fadein .5s .1s ease-out both
}

.bld .art_rating_right {
    animation: art_fadein .5s .25s ease-out both
}

@media (max-width: 1024px) {
    .bld .art_band {
        padding: 32px;
        flex-direction: column
    }

    .bld .art_img_wrap {
        width: 100%;
        height: 220px
    }

    .bld .art_band::before {
        display: none
    }

    .bld .art_body_wrap {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 32px
    }

    .bld .art_rating_sec {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 32px
    }

    .bld .art_divider_b {
        margin: 0 32px
    }

    .bld .art_tags_sec {
        padding: 32px
    }
}

@media (max-width: 640px) {
    .bld .art_band {
        padding: 32px 16px
    }

    .bld .art_h1 {
        font-size: 32px
    }

    .bld .art_body_wrap {
        padding: 32px 16px
    }

    .bld .art_pull {
        flex-direction: column;
        gap: 16px
    }

    .bld .art_pull_quote {
        width: 100%
    }

    .bld .art_rating_sec {
        padding: 32px 16px
    }

    .bld .art_tags_sec {
        padding: 16px
    }

    .bld .art_divider_b {
        margin: 0 16px
    }

    .bld .art_meta_row {
        gap: 16px
    }
}

@media (max-width: 360px) {
    .bld .art_h1 {
        font-size: 24px
    }

    .bld .art_stat_num {
        font-size: 32px
    }

    .bld .art_like_count {
        font-size: 32px
    }
}

.prm {
    max-width: 100%;
    overflow-x: hidden
}

.prm .pg-wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 32px
}

.prm .ttl-blk {
    background: #f4f7f6;
    padding: 64px 0 48px;
    position: relative
}

.prm .ttl-blk::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    width: 60px;
    height: 60px;
    border-top: 1px solid #77ACA1;
    border-left: 1px solid #77ACA1;
    pointer-events: none
}

.prm .ttl-blk::after {
    content: '';
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 60px;
    height: 60px;
    border-bottom: 1px solid #77ACA1;
    border-right: 1px solid #77ACA1;
    pointer-events: none
}

.prm .ttl-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 64px
}

.prm .ttl-text {
    flex: 1
}

.prm .ttl-eyebrow {
    font-size: 16px;
    line-height: 1.6;
    color: #588A81;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px
}

.prm .ttl-h1 {
    font-size: 62px;
    line-height: 1.1;
    font-weight: 800;
    color: #2a3d38;
    letter-spacing: -.02em;
    margin-bottom: 16px
}

.prm .ttl-desc {
    font-size: 24px;
    line-height: 1.6;
    color: #436359;
    font-weight: 300;
    max-width: 520px
}

.prm .ttl-img-col {
    flex-shrink: 0;
    width: 280px
}

.prm .ttl-img-wrap {
    width: 280px;
    height: 360px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: -1px 10px 48px 1px #4363591a
}

.prm .ttl-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.prm .ttl-img-wrap .duo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #43635973 0%, transparent 70%);
    mix-blend-mode: multiply
}

.prm .divider-tri {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    line-height: 0
}

.prm .divider-tri svg {
    display: block
}

.prm .posts-strip {
    background: #fff;
    padding: 64px 0
}

.prm .posts-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 32px;
    align-items: start
}

.prm .post-card {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: -1px 6px 28px 1px #43635917;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s ease-out
}

.prm .post-card:hover {
    box-shadow: -1px 10px 48px 1px #43635921
}

.prm .post-card.feat {
    border-radius: 38px
}

.prm .post-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block
}

.prm .post-card.feat .post-img {
    height: 300px
}

.prm .post-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1
}

.prm .post-tag {
    display: inline-block;
    font-size: 16px;
    line-height: 1.3;
    color: #588A81;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase
}

.prm .post-h {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: #2a3d38
}

.prm .post-card.feat .post-h {
    font-size: 32px
}

.prm .post-short {
    font-size: 16px;
    line-height: 1.6;
    color: #3d5249
}

.prm .post-meta {
    font-size: 16px;
    line-height: 1.3;
    color: #77ACA1
}

.prm .post-lnk {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #436359;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 3px;
    transition: color .15s ease-out;
    margin-top: 8px
}

.prm .post-lnk:hover {
    color: #77ACA1
}

.prm .sec-about {
    background: #436359;
    padding: 64px 0;
    position: relative
}

.prm .about-grid {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: center
}

.prm .about-pull {
    flex-shrink: 0;
    width: 220px;
    font-size: 44px;
    line-height: 1.1;
    font-weight: 800;
    color: #77ACA1;
    letter-spacing: -.02em
}

.prm .about-body {
    flex: 1
}

.prm .about-h {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px
}

.prm .about-p {
    font-size: 16px;
    line-height: 1.9;
    color: #c8dbd7
}

.prm .sec-archive {
    padding: 64px 0;
    background: #f4f7f6;
    position: relative;
    overflow: hidden
}

.prm .sec-archive::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, #43635912 1px, transparent 0);
    background-size: 18px 18px;
    pointer-events: none
}

.prm .archive-inner {
    position: relative;
    z-index: 1
}

.prm .sec-lbl {
    font-size: 16px;
    line-height: 1.3;
    color: #588A81;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px
}

.prm .archive-h {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    color: #2a3d38;
    margin-bottom: 32px
}

.prm .metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px
}

.prm .metric-box {
    background: #fff;
    border-radius: 22px;
    padding: 32px;
    box-shadow: -1px 6px 28px 1px #43635917;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.prm .metric-num {
    font-size: 44px;
    line-height: 1.1;
    font-weight: 800;
    color: #436359;
    letter-spacing: -.02em
}

.prm .metric-lbl {
    font-size: 16px;
    line-height: 1.6;
    color: #3d5249
}

.prm .metric-sub {
    font-size: 16px;
    line-height: 1.6;
    color: #77ACA1
}

.prm .sec-directions {
    padding: 64px 0;
    background: #fff
}

.prm .dir-h {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 300;
    color: #2a3d38;
    margin-bottom: 32px
}

.prm .dir-h strong {
    font-weight: 800
}

.prm .dir-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0
}

.prm .dir-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 32px;
    border-radius: 22px;
    background: #f4f7f6;
    transition: background .18s ease-out
}

.prm .dir-item:hover {
    background: #e8f0ee
}

.prm .dir-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 4px;
    background: #436359;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-shadow: -1px 6px 28px 1px #43635917
}

.prm .dir-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.prm .dir-text {
    flex: 1
}

.prm .dir-name {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: #2a3d38;
    margin-bottom: 8px
}

.prm .dir-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #3d5249
}

.prm .dir-link {
    font-size: 16px;
    font-weight: 700;
    color: #436359;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 3px;
    transition: color .15s ease;
    white-space: nowrap;
    align-self: center;
    flex-shrink: 0
}

.prm .dir-link:hover {
    color: #77ACA1
}

.prm .sec-picks {
    padding: 64px 0;
    background: #588A81
}

.prm .picks-h {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px
}

.prm .picks-sub {
    font-size: 16px;
    line-height: 1.6;
    color: #c8dbd7;
    margin-bottom: 32px
}

.prm .picks-row {
    display: flex;
    flex-direction: row;
    gap: 32px
}

.prm .pick-item {
    flex: 1;
    background: #ffffff1f;
    border-radius: 22px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: background .2s ease-out
}

.prm .pick-item:hover {
    background: #fff3
}

.prm .pick-num {
    font-size: 44px;
    line-height: 1.1;
    font-weight: 800;
    color: #ffffff40
}

.prm .pick-name {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: #fff
}

.prm .pick-why {
    font-size: 16px;
    line-height: 1.6;
    color: #d4e8e4;
    flex: 1
}

.prm .pick-go {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: color .15s ease
}

.prm .pick-go:hover {
    color: #77ACA1
}

.prm .sec-underrated {
    padding: 64px 0;
    background: #fff
}

.prm .undr-wrap {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start
}

.prm .undr-img-col {
    flex-shrink: 0;
    width: 320px
}

.prm .undr-img {
    width: 320px;
    height: 420px;
    object-fit: cover;
    border-radius: 38px;
    display: block;
    box-shadow: -1px 10px 48px 1px #4363591a
}

.prm .undr-content {
    flex: 1
}

.prm .undr-h {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 300;
    color: #2a3d38;
    margin-bottom: 32px
}

.prm .undr-h em {
    font-style: normal;
    font-weight: 800
}

.prm .undr-items {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.prm .undr-piece {
    padding: 32px;
    border-radius: 22px;
    background: #f4f7f6;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: inset -1px 1px 6px 1px #4363590f
}

.prm .undr-piece-name {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: #2a3d38
}

.prm .undr-piece-why {
    font-size: 16px;
    line-height: 1.6;
    color: #3d5249
}

.prm .sec-adjacent {
    padding: 64px 0;
    background: #2a3d38;
    position: relative
}

.prm .adj-h {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px
}

.prm .adj-sub {
    font-size: 16px;
    line-height: 1.6;
    color: #77ACA1;
    margin-bottom: 32px
}

.prm .adj-tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px
}

.prm .adj-tag {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 38px;
    background: #77aca126;
    font-size: 16px;
    font-weight: 600;
    color: #c8dbd7;
    text-decoration: none;
    border: 1px solid #77aca14d;
    transition: background .18s ease-out, color .18s ease-out;
    position: relative;
    overflow: hidden
}

.prm .adj-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: #436359;
    transition: height .2s ease-out;
    z-index: 0
}

.prm .adj-tag:hover::after {
    height: 100%
}

.prm .adj-tag span {
    position: relative;
    z-index: 1
}

.prm .adj-tag:hover {
    color: #fff;
    border-color: #436359
}

.prm .sec-habit {
    padding: 64px 0;
    background: #f4f7f6
}

.prm .habit-inner {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start
}

.prm .habit-left {
    flex: 1
}

.prm .habit-h {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 800;
    color: #2a3d38;
    margin-bottom: 16px
}

.prm .habit-p {
    font-size: 16px;
    line-height: 1.9;
    color: #3d5249;
    margin-bottom: 16px
}

.prm .habit-right {
    flex-shrink: 0;
    width: 320px
}

.prm .habit-img {
    width: 320px;
    height: 400px;
    object-fit: cover;
    border-radius: 22px;
    display: block;
    box-shadow: -1px 6px 28px 1px #43635917
}

.prm .habit-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px
}

.prm .habit-step {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start
}

.prm .step-dot {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: #436359;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    box-shadow: -1px 1px 6px 1px #4363590f
}

.prm .step-txt {
    font-size: 16px;
    line-height: 1.6;
    color: #3d5249;
    padding-top: 8px
}

.prm .dashed-connector {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin: 32px 0
}

.prm .dash-line {
    flex: 1;
    border-top: 2px dashed #77ACA1
}

.prm .dash-dot {
    width: 10px;
    height: 10px;
    border-radius: 0;
    background: #436359;
    transform: rotate(45deg);
    flex-shrink: 0
}

@keyframes flicker-bg {
    0% {
        opacity: 1
    }

    20% {
        opacity: .97
    }

    45% {
        opacity: 1
    }

    67% {
        opacity: .95
    }

    85% {
        opacity: 1
    }

    100% {
        opacity: .98
    }
}

.prm .sec-about .about-flicker {
    position: absolute;
    inset: 0;
    background: #436359;
    animation: flicker-bg 9s infinite;
    pointer-events: none;
    z-index: 0
}

.prm .sec-about .about-grid {
    position: relative;
    z-index: 1
}

@media (max-width: 1024px) {
    .prm .ttl-inner {
        gap: 32px
    }

    .prm .ttl-h1 {
        font-size: 44px
    }

    .prm .posts-grid {
        grid-template-columns: 1fr
    }

    .prm .post-card.feat .post-img {
        height: 240px
    }

    .prm .picks-row {
        flex-direction: column
    }

    .prm .undr-wrap {
        flex-direction: column;
        gap: 32px
    }

    .prm .undr-img-col {
        width: 100%
    }

    .prm .undr-img {
        width: 100%;
        height: 280px
    }

    .prm .habit-inner {
        flex-direction: column;
        gap: 32px
    }

    .prm .habit-right {
        width: 100%
    }

    .prm .habit-img {
        width: 100%;
        height: 260px
    }

    .prm .about-grid {
        flex-direction: column;
        gap: 32px
    }

    .prm .about-pull {
        width: 100%;
        font-size: 32px
    }

    .prm .metrics-grid {
        grid-template-columns: 1fr
    }

    .prm .ttl-img-col {
        display: none
    }
}

@media (max-width: 640px) {
    .prm .pg-wrap {
        padding: 0 16px
    }

    .prm .ttl-inner {
        padding: 0 16px
    }

    .prm .ttl-h1 {
        font-size: 32px
    }

    .prm .ttl-desc {
        font-size: 16px
    }

    .prm .ttl-blk {
        padding: 32px 0
    }

    .prm .posts-strip,
    .prm .sec-about,
    .prm .sec-archive,
    .prm .sec-directions,
    .prm .sec-picks,
    .prm .sec-underrated,
    .prm .sec-adjacent,
    .prm .sec-habit {
        padding: 32px 0
    }

    .prm .post-body {
        padding: 16px
    }

    .prm .dir-item {
        flex-direction: column;
        gap: 8px
    }

    .prm .dir-link {
        align-self: flex-start
    }

    .prm .picks-row {
        flex-direction: column;
        gap: 16px
    }

    .prm .pick-item {
        padding: 16px
    }

    .prm .adj-tags {
        gap: 8px
    }

    .prm .adj-tag {
        padding: 8px 16px
    }

    .prm .metric-box {
        padding: 16px
    }

    .prm .metric-num {
        font-size: 32px
    }
}

@media (max-width: 360px) {
    .prm .ttl-h1 {
        font-size: 24px
    }

    .prm .pg-wrap {
        padding: 0 8px
    }

    .prm .ttl-inner {
        padding: 0 8px
    }
}

.evts {
    max-width: 1500px;
    margin: 0 auto;
    overflow: hidden
}

.evts .pg-top {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 0;
    padding: 64px 64px 0;
    position: relative
}

.evts .pg-top .txt-zone {
    padding: 64px 64px 64px 0;
    position: relative;
    z-index: 1
}

.evts .pg-top .dot-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background-image: radial-gradient(circle, #77ACA1 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: .18;
    pointer-events: none
}

.evts .pg-top .eyebrow {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .12em;
    color: #588A81;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 8px 16px;
    border: 1.5px solid #77ACA1;
    border-radius: 4px
}

.evts .pg-top .main-hdg {
    font-size: 62px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #1e3530;
    margin-bottom: 32px
}

.evts .pg-top .main-hdg span {
    color: #436359
}

.evts .pg-top .sub-stat {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start
}

.evts .pg-top .stat-num {
    font-size: 44px;
    font-weight: 800;
    color: #436359;
    line-height: 1.1
}

.evts .pg-top .stat-lbl {
    font-size: 16px;
    color: #588A81;
    line-height: 1.6;
    margin-top: 4px
}

.evts .pg-top .stat-item {
    display: flex;
    flex-direction: column
}

.evts .pg-top .img-col {
    position: relative;
    overflow: hidden;
    border-radius: 22px 0 0 22px
}

.evts .pg-top .img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: slow-pan 14s ease-in-out infinite alternate;
    filter: contrast(1.05) saturate(1.08)
}

.evts .pg-top .img-col::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #43635947, transparent 70%);
    border-radius: 22px 0 0 22px
}

@keyframes slow-pan {
    from {
        transform: scale(1.06) translateY(3%)
    }

    to {
        transform: scale(1.0) translateY(-3%)
    }
}

.evts .divider-a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 32px 64px
}

.evts .divider-a .line-short {
    width: 48px;
    height: 2px;
    background: #77ACA1
}

.evts .divider-a .diamond {
    width: 10px;
    height: 10px;
    background: #436359;
    transform: rotate(45deg)
}

.evts .events-grid {
    padding: 0 64px 64px;
    background: linear-gradient(180deg, #f4f8f7, transparent)
}

.evts .events-grid .grid-hdg {
    font-size: 32px;
    font-weight: 300;
    color: #1e3530;
    margin-bottom: 8px;
    line-height: 1.3
}

.evts .events-grid .grid-hdg strong {
    font-weight: 700
}

.evts .events-grid .hdg-row {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px
}

.evts .events-grid .hdg-note {
    font-size: 16px;
    color: #588A81;
    line-height: 1.6;
    max-width: 340px;
    text-align: right
}

.evts .events-grid .cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px
}

.evts .events-grid .ev-card {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: -1px 6px 28px 1px #43635917;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s ease-out, transform .2s ease-out
}

.evts .events-grid .ev-card:hover {
    box-shadow: -1px 10px 48px 1px #4363591a;
    transform: translateY(-4px)
}

.evts .events-grid .ev-card .card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative
}

.evts .events-grid .ev-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.evts .events-grid .ev-card:hover .card-img img {
    transform: scale(1.05)
}

.evts .events-grid .ev-card .card-img .img-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #436359;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 4px
}

.evts .events-grid .ev-card .card-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1
}

.evts .events-grid .ev-card .card-type {
    font-size: 16px;
    font-weight: 600;
    color: #77ACA1;
    text-transform: uppercase;
    letter-spacing: .1em
}

.evts .events-grid .ev-card .card-name {
    font-size: 24px;
    font-weight: 700;
    color: #1e3530;
    line-height: 1.3
}

.evts .events-grid .ev-card .card-desc {
    font-size: 16px;
    color: #4a6660;
    line-height: 1.6
}

.evts .events-grid .ev-card .card-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid #4363591f
}

.evts .events-grid .ev-card .meta-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #588A81
}

.evts .events-grid .ev-card .meta-row svg {
    flex-shrink: 0
}

.evts .events-grid .ev-card .card-price {
    font-size: 24px;
    font-weight: 800;
    color: #436359
}

.evts .events-grid .ev-card .card-foot {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px 32px
}

.evts .events-grid .ev-card .reg-btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #436359;
    border: 2px solid #436359;
    padding: 8px 32px;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .2s ease-out;
    text-decoration: none
}

.evts .events-grid .ev-card .reg-btn::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #436359;
    transition: height .18s ease-out;
    z-index: 0
}

.evts .events-grid .ev-card .reg-btn:hover::before {
    height: 100%
}

.evts .events-grid .ev-card .reg-btn:hover {
    color: #fff
}

.evts .events-grid .ev-card .reg-btn span {
    position: relative;
    z-index: 1
}

.evts .events-grid .ev-card .spots-left {
    font-size: 16px;
    color: #588A81
}

.evts .compare-band {
    padding: 64px;
    background: #436359;
    position: relative
}

.evts .compare-band::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #77ACA1, #436359)
}

.evts .compare-band .band-hdg {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3
}

.evts .compare-band .band-sub {
    font-size: 16px;
    color: #b0cdc8;
    margin-bottom: 32px;
    line-height: 1.6
}

.evts .compare-band .price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: -1px 10px 48px 1px #4363591a
}

.evts .compare-band .price-table thead tr th {
    background: #fff;
    color: #436359;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 32px;
    text-align: left
}

.evts .compare-band .price-table thead tr th.col-feat {
    background: #f4f8f7;
    color: #1e3530;
    font-size: 16px;
    font-weight: 600
}

.evts .compare-band .price-table thead tr th.col-prem {
    background: #436359;
    color: #fff
}

.evts .compare-band .price-table tbody tr td {
    background: #fff;
    color: #1e3530;
    font-size: 16px;
    padding: 16px 32px;
    border-top: 1px solid #43635914
}

.evts .compare-band .price-table tbody tr td.col-feat {
    background: #f4f8f7;
    color: #436359;
    font-weight: 600
}

.evts .compare-band .price-table tbody tr td.col-prem {
    background: #4363590f;
    font-weight: 700;
    color: #436359
}

.evts .compare-band .price-table .check-yes {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #436359;
    position: relative
}

.evts .compare-band .price-table .check-yes::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 5px;
    width: 8px;
    height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg)
}

.evts .compare-band .price-table .check-no {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #dde8e6;
    position: relative
}

.evts .compare-band .price-table .check-no::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 4px;
    width: 10px;
    height: 1.5px;
    background: #8aaca6
}

.evts .compare-band .price-row-hdg td {
    background: #edf4f2 !important;
    font-weight: 700 !important;
    color: #436359 !important;
    font-size: 16px !important
}

.evts .compare-band .price-row-hdg td.col-prem {
    background: #4363591f !important
}

.evts .compare-band .price-row-hdg td.col-feat {
    background: #e4eeeb !important
}

.evts .divider-b {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 32px 64px
}

.evts .divider-b .line-b {
    width: 64px;
    height: 1.5px;
    background: linear-gradient(90deg, #77ACA1, transparent)
}

.evts .divider-b .line-b.rev {
    background: linear-gradient(270deg, #77ACA1, transparent)
}

.evts .divider-b .dot-mid {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #588A81
}

.evts .sidebar-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    padding: 0 64px 64px
}

.evts .sidebar-layout .side-col {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.evts .sidebar-layout .side-widget {
    background: #fff;
    border-radius: 22px;
    padding: 32px;
    box-shadow: -1px 1px 6px 1px #588a810f
}

.evts .sidebar-layout .side-widget .wid-hdg {
    font-size: 16px;
    font-weight: 700;
    color: #436359;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 16px
}

.evts .sidebar-layout .side-widget .loc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.evts .sidebar-layout .side-widget .loc-list li {
    font-size: 16px;
    color: #4a6660;
    line-height: 1.6;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.evts .sidebar-layout .side-widget .loc-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #77ACA1;
    flex-shrink: 0
}

.evts .sidebar-layout .side-widget .review-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid #4363591a;
    margin-bottom: 16px
}

.evts .sidebar-layout .side-widget .review-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0
}

.evts .sidebar-layout .side-widget .rev-name {
    font-size: 16px;
    font-weight: 700;
    color: #1e3530
}

.evts .sidebar-layout .side-widget .rev-text {
    font-size: 16px;
    color: #4a6660;
    line-height: 1.6
}

.evts .sidebar-layout .main-col {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.evts .sidebar-layout .main-col .pull-wrap {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 32px;
    align-items: start
}

.evts .sidebar-layout .main-col .pull-quote {
    font-size: 24px;
    font-weight: 700;
    color: #436359;
    line-height: 1.3;
    border-top: 3px solid #77ACA1;
    padding-top: 16px
}

.evts .sidebar-layout .main-col .body-txt p {
    font-size: 16px;
    color: #2e4e48;
    line-height: 1.9;
    margin-bottom: 16px
}

.evts .sidebar-layout .main-col .body-txt p:last-child {
    margin-bottom: 0
}

.evts .sidebar-layout .main-col .body-txt .inline-lnk {
    color: #436359;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 3px;
    font-weight: 700;
    transition: color .15s ease
}

.evts .sidebar-layout .main-col .body-txt .inline-lnk:hover {
    color: #77ACA1
}

.evts .sidebar-layout .main-col .feat-img-wrap {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: -1px 6px 28px 1px #43635917;
    position: relative
}

.evts .sidebar-layout .main-col .feat-img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    animation: slow-pan 18s ease-in-out infinite alternate
}

.evts .sidebar-layout .main-col .feat-img-wrap .diamond-accent {
    position: absolute;
    bottom: 32px;
    right: 32px;
    width: 40px;
    height: 40px;
    background: #77ACA1;
    transform: rotate(45deg);
    opacity: .85
}

.evts .sidebar-layout .main-col .metrics-row {
    display: flex;
    flex-direction: row;
    gap: 32px
}

.evts .sidebar-layout .main-col .metric-box {
    flex: 1;
    background: #fff;
    border-radius: 22px;
    padding: 32px;
    box-shadow: -1px 6px 28px 1px #43635917;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    overflow: hidden
}

.evts .sidebar-layout .main-col .metric-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #436359, #77ACA1)
}

.evts .sidebar-layout .main-col .metric-box .m-num {
    font-size: 44px;
    font-weight: 800;
    color: #436359;
    line-height: 1.1
}

.evts .sidebar-layout .main-col .metric-box .m-lbl {
    font-size: 16px;
    color: #588A81;
    line-height: 1.6
}

.evts .sidebar-layout .main-col .cta-strip {
    background: linear-gradient(135deg, #436359, #588A81);
    border-radius: 22px;
    padding: 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px
}

.evts .sidebar-layout .main-col .cta-strip .strip-txt {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3
}

.evts .sidebar-layout .main-col .cta-strip .strip-note {
    font-size: 16px;
    color: #b0cdc8;
    margin-top: 8px;
    line-height: 1.6
}

.evts .sidebar-layout .main-col .cta-strip .cta-btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #436359;
    background: #fff;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .18s ease-out, color .18s ease-out;
    flex-shrink: 0
}

.evts .sidebar-layout .main-col .cta-strip .cta-btn:hover {
    background: #77ACA1;
    color: #fff
}

@media (max-width: 1280px) {
    .evts .pg-top {
        grid-template-columns: 1fr 280px;
        padding: 32px 32px 0
    }

    .evts .pg-top .txt-zone {
        padding: 32px 32px 32px 0
    }

    .evts .events-grid {
        padding: 0 32px 64px
    }

    .evts .events-grid .cards {
        grid-template-columns: 1fr 1fr
    }

    .evts .compare-band {
        padding: 64px 32px
    }

    .evts .sidebar-layout {
        padding: 0 32px 64px;
        gap: 32px
    }

    .evts .divider-a,
    .evts .divider-b {
        padding: 32px
    }
}

@media (max-width: 1024px) {
    .evts .pg-top {
        grid-template-columns: 1fr;
        padding: 32px 32px 0
    }

    .evts .pg-top .img-col {
        height: 280px;
        border-radius: 22px
    }

    .evts .pg-top .img-col::after {
        border-radius: 22px
    }

    .evts .pg-top .txt-zone {
        padding: 32px 0
    }

    .evts .pg-top .main-hdg {
        font-size: 44px
    }

    .evts .sidebar-layout {
        grid-template-columns: 1fr
    }

    .evts .sidebar-layout .side-col {
        flex-direction: row;
        flex-wrap: wrap
    }

    .evts .sidebar-layout .side-widget {
        flex: 1;
        min-width: 220px
    }

    .evts .sidebar-layout .main-col .pull-wrap {
        grid-template-columns: 1fr
    }

    .evts .sidebar-layout .main-col .metrics-row {
        flex-wrap: wrap
    }

    .evts .sidebar-layout .main-col .metric-box {
        min-width: 160px
    }

    .evts .compare-band .price-table thead tr th,
    .evts .compare-band .price-table tbody tr td {
        padding: 16px
    }
}

@media (max-width: 640px) {
    .evts .pg-top {
        padding: 16px 16px 0
    }

    .evts .pg-top .main-hdg {
        font-size: 32px
    }

    .evts .pg-top .sub-stat {
        flex-direction: column;
        gap: 16px
    }

    .evts .events-grid {
        padding: 0 16px 32px
    }

    .evts .events-grid .cards {
        grid-template-columns: 1fr
    }

    .evts .events-grid .hdg-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }

    .evts .events-grid .hdg-note {
        text-align: left;
        max-width: 100%
    }

    .evts .compare-band {
        padding: 32px 16px
    }

    .evts .compare-band .price-table {
        font-size: 16px
    }

    .evts .compare-band .price-table thead tr th,
    .evts .compare-band .price-table tbody tr td {
        padding: 8px 16px
    }

    .evts .sidebar-layout {
        padding: 0 16px 32px
    }

    .evts .sidebar-layout .main-col .cta-strip {
        flex-direction: column;
        align-items: flex-start
    }

    .evts .divider-a,
    .evts .divider-b {
        padding: 16px
    }
}

@media (max-width: 360px) {
    .evts .pg-top .main-hdg {
        font-size: 24px
    }

    .evts .pg-top .stat-num {
        font-size: 32px
    }
}

.blg {
    background: #fff;
    overflow-x: clip
}

.blg .top-strip {
    background: linear-gradient(180deg, #e8f0ee 0%, #fff 100%);
    padding: 64px 32px 32px
}

.blg .top-strip .strip-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 32px;
    position: relative
}

.blg .top-strip .strip-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 31px, #4363590a 31px, #4363590a 32px), repeating-linear-gradient(90deg, transparent, transparent 31px, #4363590a 31px, #4363590a 32px);
    pointer-events: none
}

.blg .top-strip .pg-label {
    font-size: 16px;
    color: #588A81;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.3
}

.blg .top-strip .pg-head {
    font-size: 62px;
    font-weight: 800;
    color: #2a3d37;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin: 0;
    position: relative
}

.blg .top-strip .pg-head .punct {
    color: #77ACA1
}

.blg .top-strip .pg-sub {
    font-size: 16px;
    color: #4a6560;
    line-height: 1.6;
    max-width: 480px;
    margin: 0
}

.blg .top-strip .head-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1
}

.blg .top-strip .img-col {
    width: 320px;
    flex-shrink: 0;
    position: relative
}

.blg .top-strip .img-col .img-frame {
    width: 320px;
    height: 220px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: -1px 10px 48px 1px #4363591a;
    transform: translateY(16px)
}

.blg .top-strip .img-col .img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    mix-blend-mode: multiply;
    filter: saturate(0.85) contrast(1.05)
}

.blg .top-strip .img-col .img-overlay {
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: linear-gradient(135deg, #4363592e 0%, transparent 60%);
    pointer-events: none
}

.blg .divider-band {
    height: 8px;
    background: linear-gradient(90deg, #436359 0%, #77ACA1 100%)
}

.blg .posts-area {
    padding: 64px 32px;
    background: #fff
}

.blg .posts-area .posts-wrap {
    max-width: 1500px;
    margin: 0 auto
}

.blg .posts-area .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px
}

.blg .card {
    border-radius: 22px;
    background: #fff;
    box-shadow: inset -1px 1px 6px 1px #4363590f -1px 6px 28px 1px #43635917;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: box-shadow .2s ease-out
}

.blg .card:hover {
    box-shadow: inset -1px 1px 6px 1px #4363590f -1px 10px 48px 1px #4363591a
}

.blg .card .card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative
}

.blg .card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease-out
}

.blg .card:hover .card-img img {
    transform: scale(1.04)
}

.blg .card .num-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background: #436359;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
    box-shadow: -1px 6px 28px 1px #43635917
}

.blg .card .card-tag {
    display: inline-block;
    font-size: 16px;
    color: #588A81;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 0
}

.blg .card .card-body {
    padding: 16px 16px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1
}

.blg .card .card-ttl {
    font-size: 24px;
    font-weight: 700;
    color: #2a3d37;
    line-height: 1.3;
    letter-spacing: -.01em;
    margin: 0
}

.blg .card .card-desc {
    font-size: 16px;
    color: #4a6560;
    line-height: 1.6;
    margin: 0
}

.blg .card .card-meta {
    padding: 8px 16px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-top: 1px solid #43635914
}

.blg .card .meta-author {
    font-size: 16px;
    color: #436359;
    font-weight: 600;
    line-height: 1.3
}

.blg .card .meta-stats {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px
}

.blg .card .stat-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #588A81;
    line-height: 1.3
}

.blg .card .stat-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.blg .card .card-date {
    font-size: 16px;
    color: #77ACA1;
    line-height: 1.3
}

.blg .card .card-link {
    display: block;
    margin: 0 16px 16px;
    padding: 8px 16px;
    border-radius: 4px;
    border: 2px solid #436359;
    color: #436359;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    background: transparent;
    position: relative;
    overflow: hidden;
    transition: color .2s ease-out
}

.blg .card .card-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #436359;
    transition: height .18s ease-out;
    z-index: 0
}

.blg .card .card-link:hover::before {
    height: 100%
}

.blg .card .card-link:hover {
    color: #fff !important
}

.blg .card .card-link span {
    position: relative;
    z-index: 1
}

.blg .card.featured {
    grid-column: 1 / -1;
    flex-direction: row
}

.blg .card.featured .card-img {
    width: 420px;
    height: auto;
    flex-shrink: 0
}

.blg .card.featured .card-content-col {
    display: flex;
    flex-direction: column;
    flex: 1
}

.blg .card.featured .card-body {
    flex: 1;
    padding: 32px 32px 16px
}

.blg .card.featured .card-ttl {
    font-size: 32px
}

.blg .card.featured .card-meta {
    padding: 16px 32px
}

.blg .card.featured .card-link {
    margin: 0 32px 32px
}

.blg .stats-belt {
    background: linear-gradient(180deg, #e8f0ee 0%, #fff 100%);
    padding: 64px 32px
}

.blg .stats-belt .belt-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 32px
}

.blg .stats-belt .belt-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.blg .stats-belt .belt-text .bt-head {
    font-size: 32px;
    font-weight: 700;
    color: #2a3d37;
    line-height: 1.3;
    letter-spacing: -.02em;
    margin: 0
}

.blg .stats-belt .belt-text .bt-body {
    font-size: 16px;
    color: #4a6560;
    line-height: 1.6;
    margin: 0
}

.blg .stats-belt .belt-text .pull-quote {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    margin: 8px 0
}

.blg .stats-belt .belt-text .pull-phrase {
    font-size: 24px;
    font-weight: 700;
    color: #436359;
    line-height: 1.3;
    flex: 0 0 180px
}

.blg .stats-belt .belt-text .pull-rest {
    font-size: 16px;
    color: #4a6560;
    line-height: 1.6;
    margin: 0
}

.blg .stats-belt .rings-col {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
    flex-shrink: 0
}

.blg .ring-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.blg .ring-item .ring-svg {
    width: 96px;
    height: 96px
}

.blg .ring-item .ring-label {
    font-size: 16px;
    color: #436359;
    font-weight: 600;
    text-align: center;
    line-height: 1.3
}

.blg .newsletter-area {
    padding: 64px 32px;
    background: #436359;
    position: relative
}

.blg .newsletter-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #77ACA1 0%, #436359 100%)
}

.blg .newsletter-area .nl-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.blg .newsletter-area .nl-head {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin: 0
}

.blg .newsletter-area .nl-head .punct {
    color: #77ACA1
}

.blg .newsletter-area .nl-sub {
    font-size: 16px;
    color: #ffffffc7;
    line-height: 1.6;
    margin: 16px 0 0
}

.blg .newsletter-area .nl-form {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.blg .newsletter-area .nl-form .field-row {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.blg .newsletter-area .nl-form label {
    font-size: 16px;
    color: #ffffffd1;
    font-weight: 600;
    line-height: 1.3
}

.blg .newsletter-area .nl-form input[type="text"],
.blg .newsletter-area .nl-form input[type="email"] {
    padding: 16px;
    border-radius: 4px;
    border: 1.5px solid #ffffff38;
    background: #ffffff1a;
    color: #fff;
    font-size: 16px;
    line-height: 1.3;
    outline: none;
    transition: border-color .15s ease-out
}

.blg .newsletter-area .nl-form input[type="text"]::placeholder,
.blg .newsletter-area .nl-form input[type="email"]::placeholder {
    color: #ffffff59
}

.blg .newsletter-area .nl-form input[type="text"]:focus,
.blg .newsletter-area .nl-form input[type="email"]:focus {
    border-color: #77ACA1
}

.blg .newsletter-area .nl-form .submit-btn {
    padding: 16px 32px;
    border-radius: 4px;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .18s ease-out;
    align-self: flex-start
}

.blg .newsletter-area .nl-form .submit-btn::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #fff;
    transition: height .2s ease-out;
    z-index: 0
}

.blg .newsletter-area .nl-form .submit-btn:hover::before {
    height: 100%
}

.blg .newsletter-area .nl-form .submit-btn:hover {
    color: #436359
}

.blg .newsletter-area .nl-form .submit-btn span {
    position: relative;
    z-index: 1
}

.blg .shake-anim {
    animation: blg-shake .5s ease-out 2.5s 1
}

@keyframes blg-shake {
    0% {
        transform: translateX(0)
    }

    20% {
        transform: translateX(-5px)
    }

    40% {
        transform: translateX(5px)
    }

    60% {
        transform: translateX(-4px)
    }

    80% {
        transform: translateX(4px)
    }

    100% {
        transform: translateX(0)
    }
}

@media (max-width: 1024px) {
    .blg .top-strip .img-col {
        width: 240px
    }

    .blg .top-strip .img-col .img-frame {
        width: 240px;
        height: 180px
    }

    .blg .top-strip .pg-head {
        font-size: 44px
    }

    .blg .posts-area .grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .blg .card.featured {
        flex-direction: column
    }

    .blg .card.featured .card-img {
        width: 100%;
        height: 260px
    }

    .blg .card.featured .card-body {
        padding: 16px 16px 8px
    }

    .blg .card.featured .card-meta {
        padding: 8px 16px
    }

    .blg .card.featured .card-link {
        margin: 0 16px 16px
    }

    .blg .stats-belt .belt-inner {
        flex-direction: column
    }

    .blg .newsletter-area .nl-inner {
        grid-template-columns: 1fr;
        gap: 32px
    }
}

@media (max-width: 640px) {
    .blg .top-strip {
        padding: 32px 16px 16px
    }

    .blg .top-strip .strip-inner {
        flex-direction: column;
        gap: 16px
    }

    .blg .top-strip .img-col {
        width: 100%
    }

    .blg .top-strip .img-col .img-frame {
        width: 100%;
        height: 180px
    }

    .blg .top-strip .pg-head {
        font-size: 32px
    }

    .blg .posts-area {
        padding: 32px 16px
    }

    .blg .posts-area .grid {
        grid-template-columns: 1fr
    }

    .blg .card.featured {
        grid-column: auto
    }

    .blg .stats-belt {
        padding: 32px 16px
    }

    .blg .stats-belt .rings-col {
        flex-direction: column;
        gap: 16px
    }

    .blg .newsletter-area {
        padding: 32px 16px
    }

    .blg .newsletter-area .nl-head {
        font-size: 32px
    }
}

@media (max-width: 360px) {
    .blg .top-strip .pg-head {
        font-size: 24px
    }

    .blg .newsletter-area .nl-head {
        font-size: 24px
    }
}

.abt-auth {
    background: #fff;
    overflow-x: clip
}

.abt-auth .bento-grid {
    max-width: 1500px;
    margin: 0 auto;
    padding: 64px 32px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px
}

.abt-auth .bento-img {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    box-shadow: -1px 6px 28px 1px #43635917
}

.abt-auth .bento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: sepia(20%) contrast(1.08) brightness(0.96) saturate(0.9)
}

.abt-auth .bento-name {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
    background: #436359;
    border-radius: 22px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden
}

.abt-auth .bento-name::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 220px;
    height: 220px;
    border: 2px solid #77aca12e;
    border-radius: 50%;
    pointer-events: none
}

.abt-auth .bento-name::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 60px;
    width: 120px;
    height: 120px;
    border: 1.5px solid #77aca11f;
    border-radius: 50%;
    pointer-events: none
}

.abt-auth .auth-label {
    font-size: 16px;
    color: #77ACA1;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 1.3
}

.abt-auth .auth-name {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin: 0
}

.abt-auth .auth-name .thin {
    font-weight: 300;
    display: block
}

.abt-auth .bento-stat {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    background: #f5f7f6;
    border-radius: 22px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: inset -1px 1px 6px 1px #4363590f
}

.abt-auth .stat-num {
    font-size: 62px;
    font-weight: 800;
    color: #436359;
    line-height: 1.1;
    letter-spacing: -.03em
}

.abt-auth .stat-bar {
    height: 3px;
    background: #77ACA1;
    width: 70%;
    margin: 8px 0;
    border-radius: 4px
}

.abt-auth .stat-lbl {
    font-size: 16px;
    color: #588A81;
    line-height: 1.6
}

.abt-auth .bento-role {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    background: #77ACA1;
    border-radius: 22px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.abt-auth .role-txt {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 8px
}

.abt-auth .role-sub {
    font-size: 16px;
    color: #ffffffd1;
    line-height: 1.6;
    margin: 0
}

.abt-auth .wave-div {
    width: 100%;
    line-height: 0;
    overflow: hidden
}

.abt-auth .wave-div svg {
    display: block;
    width: 100%
}

.abt-auth .story-wrap {
    background: #f5f7f6;
    padding: 64px 32px
}

.abt-auth .story-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: start
}

.abt-auth .pull-col {
    position: sticky;
    top: 32px
}

.abt-auth .pull-quote {
    font-size: 32px;
    font-weight: 800;
    color: #436359;
    line-height: 1.3;
    letter-spacing: -.01em;
    margin: 0 0 16px
}

.abt-auth .pull-accent {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 32px
}

.abt-auth .accent-num {
    font-size: 44px;
    font-weight: 800;
    color: #588A81;
    line-height: 1.1
}

.abt-auth .accent-bar {
    height: 3px;
    background: linear-gradient(90deg, #436359, transparent);
    width: 85%;
    border-radius: 4px
}

.abt-auth .accent-desc {
    font-size: 16px;
    color: #436359;
    line-height: 1.6
}

.abt-auth .body-col {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.abt-auth .body-col .para {
    font-size: 16px;
    color: #2d3d38;
    line-height: 1.9;
    margin: 0
}

.abt-auth .body-col .para a {
    color: #436359;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 3px;
    font-weight: 600;
    transition: color .15s ease-out
}

.abt-auth .body-col .para a:hover {
    color: #77ACA1
}

.abt-auth .img-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px
}

.abt-auth .img-pair .pic {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: -1px 6px 28px 1px #43635917
}

.abt-auth .img-pair .pic.shifted {
    margin-top: 32px
}

.abt-auth .img-pair .pic img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block
}

.abt-auth .approach-sect {
    background: #fff;
    padding: 64px 32px
}

.abt-auth .approach-inner {
    max-width: 1500px;
    margin: 0 auto
}

.abt-auth .sect-eyebrow {
    font-size: 16px;
    color: #77ACA1;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 1.3
}

.abt-auth .sect-heading {
    font-size: 32px;
    font-weight: 800;
    color: #436359;
    line-height: 1.3;
    letter-spacing: -.01em;
    margin: 0 0 32px
}

.abt-auth .sect-heading .light {
    font-weight: 300
}

.abt-auth .pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.abt-auth .pillar-card {
    border-radius: 22px;
    padding: 32px;
    background: #f5f7f6;
    box-shadow: inset -1px 1px 6px 1px #4363590f;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow .2s ease-out
}

.abt-auth .pillar-card:hover {
    box-shadow: -1px 6px 28px 1px #43635917
}

.abt-auth .pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    background: #436359;
    display: flex;
    align-items: center;
    justify-content: center
}

.abt-auth .pillar-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.abt-auth .pillar-h {
    font-size: 24px;
    font-weight: 700;
    color: #436359;
    line-height: 1.3;
    margin: 0
}

.abt-auth .pillar-p {
    font-size: 16px;
    color: #2d3d38;
    line-height: 1.6;
    margin: 0
}

.abt-auth .big-img-wrap {
    margin-top: 32px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    box-shadow: -1px 10px 48px 1px #4363591a
}

.abt-auth .big-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    filter: sepia(10%) brightness(0.95) saturate(0.88)
}

.abt-auth .big-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, #436359d1, transparent);
    display: flex;
    flex-direction: column;
    gap: 8px
}

.abt-auth .overlay-q {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0
}

.abt-auth .overlay-sub {
    font-size: 16px;
    color: #fffc;
    margin: 0;
    line-height: 1.6
}

.abt-auth .wave-div2 {
    width: 100%;
    line-height: 0;
    overflow: hidden
}

.abt-auth .wave-div2 svg {
    display: block;
    width: 100%
}

.abt-auth .readers-sect {
    background: #436359;
    padding: 64px 32px
}

.abt-auth .readers-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.abt-auth .readers-left .sect-eyebrow {
    color: #77ACA1
}

.abt-auth .readers-left .sect-heading {
    color: #fff;
    margin-bottom: 16px
}

.abt-auth .readers-left .intro-p {
    font-size: 16px;
    color: #fffc;
    line-height: 1.9;
    margin: 0 0 32px
}

.abt-auth .readers-stats {
    display: flex;
    flex-direction: row;
    gap: 32px
}

.abt-auth .r-stat {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.abt-auth .r-stat .num {
    font-size: 44px;
    font-weight: 800;
    color: #77ACA1;
    line-height: 1.1
}

.abt-auth .r-stat .bar {
    height: 3px;
    border-radius: 4px;
    background: linear-gradient(90deg, #77ACA1, transparent);
    width: 80%
}

.abt-auth .r-stat .lbl {
    font-size: 16px;
    color: #ffffffbf;
    line-height: 1.6
}

.abt-auth .readers-right {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.abt-auth .review-card {
    background: #ffffff12;
    border-radius: 22px;
    padding: 32px;
    box-shadow: inset -1px 1px 6px 1px #4363590f;
    transition: background .18s ease-out
}

.abt-auth .review-card:hover {
    background: #ffffff1f
}

.abt-auth .review-stars {
    margin-bottom: 8px
}

.abt-auth .review-text {
    font-size: 16px;
    color: #ffffffe0;
    line-height: 1.9;
    margin: 0 0 16px
}

.abt-auth .review-author {
    font-size: 16px;
    font-weight: 700;
    color: #77ACA1;
    margin: 0;
    line-height: 1.3
}

.abt-auth .review-origin {
    font-size: 16px;
    color: #ffffff8c;
    margin: 0;
    line-height: 1.3
}

@media (max-width: 1024px) {
    .abt-auth .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        padding: 32px 16px 16px
    }

    .abt-auth .bento-img {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        min-height: 300px
    }

    .abt-auth .bento-name {
        grid-column: 2 / 3;
        grid-row: 1 / 2
    }

    .abt-auth .bento-stat {
        grid-column: 1 / 2;
        grid-row: 2 / 3
    }

    .abt-auth .bento-role {
        grid-column: 2 / 3;
        grid-row: 2 / 3
    }

    .abt-auth .story-inner {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .abt-auth .pull-col {
        position: static
    }

    .abt-auth .pillars {
        grid-template-columns: 1fr 1fr
    }

    .abt-auth .readers-inner {
        grid-template-columns: 1fr;
        gap: 32px
    }
}

@media (max-width: 640px) {
    .abt-auth .bento-grid {
        grid-template-columns: 1fr
    }

    .abt-auth .bento-img {
        grid-column: 1;
        grid-row: auto;
        min-height: 260px
    }

    .abt-auth .bento-name {
        grid-column: 1;
        grid-row: auto
    }

    .abt-auth .bento-stat {
        grid-column: 1;
        grid-row: auto
    }

    .abt-auth .bento-role {
        grid-column: 1;
        grid-row: auto
    }

    .abt-auth .auth-name {
        font-size: 32px
    }

    .abt-auth .pillars {
        grid-template-columns: 1fr
    }

    .abt-auth .img-pair {
        grid-template-columns: 1fr
    }

    .abt-auth .img-pair .pic.shifted {
        margin-top: 0
    }

    .abt-auth .readers-stats {
        flex-direction: column;
        gap: 16px
    }

    .abt-auth .story-wrap,
    .abt-auth .approach-sect,
    .abt-auth .readers-sect {
        padding: 32px 16px
    }
}

@media (max-width: 360px) {
    .abt-auth .bento-grid {
        padding: 16px 8px 8px;
        gap: 8px
    }

    .abt-auth .bento-name,
    .abt-auth .bento-stat,
    .abt-auth .bento-role {
        padding: 16px
    }

    .abt-auth .auth-name {
        font-size: 24px
    }

    .abt-auth .stat-num {
        font-size: 44px
    }
}

.nws {
    background: #f2f0ec;
    position: relative;
    overflow-x: clip
}

.nws .pg-wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 32px
}

.nws .drop-a {
    animation: dropIn .5s ease-out both
}

.nws .drop-b {
    animation: dropIn .5s .12s ease-out both
}

.nws .drop-c {
    animation: dropIn .5s .22s ease-out both
}

.nws .drop-d {
    animation: dropIn .5s .34s ease-out both
}

@keyframes dropIn {
    from {
        opacity: 0;
        transform: translateY(-28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.nws ::selection {
    background: #222;
    color: #fff
}

.nws a {
    text-decoration: none !important
}

.nws .tb {
    background: #fff;
    border-radius: 22px;
    margin: 32px auto;
    max-width: 1500px;
    overflow: hidden;
    box-shadow: -1px 10px 48px 1px #4363591a;
    position: relative
}

.nws .tb-corner-tl,
.nws .tb-corner-br {
    position: absolute;
    pointer-events: none;
    z-index: 2
}

.nws .tb-corner-tl {
    top: 0;
    left: 0
}

.nws .tb-corner-br {
    bottom: 0;
    right: 0;
    transform: rotate(180deg)
}

.nws .tb-img-zone {
    position: relative;
    height: 260px;
    overflow: hidden
}

.nws .tb-img-zone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.7) brightness(0.82) sepia(0.18);
    transition: filter .2s ease-out
}

.nws .tb-img-zone:hover img {
    filter: saturate(1) brightness(0.88) sepia(0)
}

.nws .tb-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, #436359b8 100%)
}

.nws .tb-body {
    padding: 32px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 32px
}

.nws .tb-label {
    font-size: 16px;
    color: #588A81;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block
}

.nws .tb-h1 {
    font-size: 62px;
    line-height: 1.1;
    color: #436359;
    font-weight: 800;
    letter-spacing: -.03em;
    margin: 0 0 8px
}

.nws .tb-sub {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5e58;
    margin: 0;
    max-width: 520px
}

.nws .tb-stat {
    flex-shrink: 0;
    background: #436359;
    color: #fff;
    border-radius: 22px;
    padding: 16px 32px;
    text-align: center;
    box-shadow: -1px 6px 28px 1px #43635917
}

.nws .tb-stat-num {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
    display: block
}

.nws .tb-stat-lbl {
    font-size: 16px;
    line-height: 1.3;
    opacity: .82;
    display: block
}

.nws .feat {
    background: #436359;
    padding: 64px 0;
    position: relative
}

.nws .feat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, #43635900 60%, #1e322a61 100%);
    pointer-events: none
}

.nws .feat-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start
}

.nws .feat-art {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: -1px 10px 48px 1px #4363591a
}

.nws .feat-img-wrap {
    position: relative;
    height: 320px;
    overflow: hidden
}

.nws .feat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease-out;
    border: 3px solid transparent;
    box-sizing: border-box
}

.nws .feat-img-wrap:hover img {
    transform: scale(1.03);
    border-color: #77ACA1
}

.nws .feat-art-body {
    padding: 32px
}

.nws .feat-tag {
    display: inline-block;
    background: #77ACA1;
    color: #fff;
    font-size: 16px;
    border-radius: 4px;
    padding: 4px 16px;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: .06em
}

.nws .feat-h2 {
    font-size: 32px;
    line-height: 1.3;
    color: #436359;
    font-weight: 800;
    margin: 0 0 16px;
    letter-spacing: -.02em
}

.nws .feat-pull {
    float: left;
    width: 180px;
    margin: 0 24px 8px 0;
    font-size: 24px;
    line-height: 1.3;
    color: #588A81;
    font-weight: 700;
    border-top: 3px solid #77ACA1;
    padding-top: 8px
}

.nws .feat-body-txt {
    font-size: 16px;
    line-height: 1.9;
    color: #374a44;
    margin: 0
}

.nws .feat-read {
    display: inline-block;
    margin-top: 16px;
    color: #436359;
    font-size: 16px;
    font-weight: 700;
    border-bottom: 3px solid #436359;
    padding-bottom: 2px;
    transition: color .15s ease-out, border-color .15s ease-out
}

.nws .feat-read:hover {
    color: #77ACA1;
    border-color: #77ACA1
}

.nws .feat-side {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.nws .feat-mini {
    background: #ffffff17;
    border-radius: 22px;
    padding: 24px;
    border: 1.5px solid #77aca138;
    transition: background .2s ease
}

.nws .feat-mini:hover {
    background: #ffffff29
}

.nws .feat-mini-tag {
    font-size: 16px;
    color: #77ACA1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    display: block;
    margin-bottom: 8px
}

.nws .feat-mini-h {
    font-size: 16px;
    font-weight: 700;
    color: #e8f0ee;
    line-height: 1.3;
    margin: 0 0 8px
}

.nws .feat-mini-p {
    font-size: 16px;
    color: #e8f0eeb8;
    line-height: 1.6;
    margin: 0
}

.nws .feat-mini-lnk {
    display: inline-block;
    margin-top: 8px;
    font-size: 16px;
    color: #77ACA1;
    font-weight: 600;
    border-bottom: 2px solid #77ACA1;
    transition: opacity .15s ease
}

.nws .feat-mini-lnk:hover {
    opacity: .7
}

.nws .feat-contrast {
    background: #77ACA1;
    border-radius: 22px;
    padding: 24px;
    box-shadow: -1px 6px 28px 1px #43635917
}

.nws .feat-contrast-h {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.nws .feat-contrast-num {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    display: block
}

.nws .feat-contrast-desc {
    font-size: 16px;
    color: #ffffffd9;
    line-height: 1.6;
    margin: 8px 0 0
}

.nws .persp {
    padding: 64px 0;
    background: #f2f0ec
}

.nws .persp-head {
    margin-bottom: 32px
}

.nws .persp-eyebrow {
    font-size: 16px;
    color: #588A81;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 8px
}

.nws .persp-h2 {
    font-size: 32px;
    line-height: 1.3;
    color: #436359;
    font-weight: 300;
    margin: 0;
    letter-spacing: -.01em
}

.nws .persp-h2 strong {
    font-weight: 800
}

.nws .persp-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px
}

.nws .persp-card {
    background: #fff;
    border-radius: 22px;
    padding: 32px;
    box-shadow: -1px 1px 6px 1px #4363590f;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow .2s ease-out
}

.nws .persp-card:hover {
    box-shadow: -1px 6px 28px 1px #43635917
}

.nws .persp-card.tall {
    grid-row: span 2
}

.nws .persp-card-img {
    border-radius: 4px;
    overflow: hidden;
    height: 180px;
    position: relative
}

.nws .persp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease-out;
    border: 3px solid transparent;
    box-sizing: border-box
}

.nws .persp-card-img:hover img {
    transform: scale(1.04);
    border-color: #588A81
}

.nws .persp-cat {
    font-size: 16px;
    color: #588A81;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em
}

.nws .persp-h3 {
    font-size: 24px;
    line-height: 1.3;
    color: #2e4039;
    font-weight: 700;
    margin: 0;
    letter-spacing: -.01em
}

.nws .persp-txt {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5e58;
    margin: 0;
    flex: 1
}

.nws .persp-author {
    font-size: 16px;
    color: #77ACA1;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.nws .persp-dot {
    width: 8px;
    height: 8px;
    border-radius: 0;
    background: #77ACA1;
    display: inline-block;
    transform: rotate(45deg)
}

.nws .persp-lnk {
    font-size: 16px;
    color: #436359;
    font-weight: 700;
    border-bottom: 3px solid #436359;
    padding-bottom: 2px;
    align-self: flex-start;
    transition: color .15s ease, border-color .15s ease
}

.nws .persp-lnk:hover {
    color: #77ACA1;
    border-color: #77ACA1
}

.nws .persp-card.accent-bg {
    background: #436359
}

.nws .persp-card.accent-bg .persp-h3 {
    color: #e8f0ee
}

.nws .persp-card.accent-bg .persp-txt {
    color: #e8f0eecc
}

.nws .persp-card.accent-bg .persp-cat {
    color: #77ACA1
}

.nws .persp-card.accent-bg .persp-lnk {
    color: #77ACA1;
    border-color: #77ACA1
}

.nws .persp-card.accent-bg .persp-author {
    color: #e8f0eeb3
}

.nws .persp-card.accent-bg .persp-dot {
    background: #77ACA1
}

.nws .ops {
    background: #588A81;
    padding: 64px 0;
    position: relative
}

.nws .ops::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #4363594d 0%, transparent 60%);
    pointer-events: none
}

.nws .ops-inner {
    position: relative;
    z-index: 1
}

.nws .ops-top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 32px
}

.nws .ops-h2 {
    font-size: 32px;
    line-height: 1.3;
    color: #fff;
    font-weight: 800;
    margin: 0 0 8px;
    letter-spacing: -.02em
}

.nws .ops-sub {
    font-size: 16px;
    color: #fffc;
    line-height: 1.6;
    margin: 0;
    max-width: 420px
}

.nws .ops-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.nws .ops-card {
    background: #fff;
    border-radius: 22px;
    padding: 32px;
    box-shadow: -1px 6px 28px 1px #43635917;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: inset 0 2px 8px #43635912 -1px 6px 28px 1px #43635917
}

.nws .ops-name {
    font-size: 16px;
    font-weight: 700;
    color: #436359
}

.nws .ops-dest {
    font-size: 16px;
    color: #77ACA1;
    font-weight: 600
}

.nws .ops-quote {
    font-size: 16px;
    line-height: 1.9;
    color: #374a44;
    margin: 0;
    flex: 1
}

.nws .ops-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px
}

@media (max-width: 1024px) {
    .nws .feat-grid {
        grid-template-columns: 1fr
    }

    .nws .feat-side {
        flex-direction: row;
        flex-wrap: wrap
    }

    .nws .feat-mini,
    .nws .feat-contrast {
        flex: 1 1 280px
    }

    .nws .persp-layout {
        grid-template-columns: 1fr 1fr
    }

    .nws .persp-card.tall {
        grid-row: span 1
    }

    .nws .ops-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 640px) {
    .nws .pg-wrap {
        padding: 0 16px
    }

    .nws .tb {
        margin: 16px auto
    }

    .nws .tb-body {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        gap: 16px
    }

    .nws .tb-h1 {
        font-size: 44px
    }

    .nws .feat-pull {
        float: none;
        width: auto;
        margin: 0 0 8px
    }

    .nws .persp-layout {
        grid-template-columns: 1fr
    }

    .nws .ops-grid {
        grid-template-columns: 1fr
    }

    .nws .ops-top {
        flex-direction: column;
        align-items: flex-start
    }

    .nws .feat {
        padding: 32px 0
    }

    .nws .persp {
        padding: 32px 0
    }

    .nws .ops {
        padding: 32px 0
    }
}

@media (max-width: 360px) {
    .nws .tb-h1 {
        font-size: 32px
    }

    .nws .tb-stat-num {
        font-size: 32px
    }
}

.suc_page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 32px;
    background: #fff
}

.suc_page .suc_wrap {
    max-width: 640px;
    width: 100%;
    text-align: center
}

.suc_page .suc_icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center
}

.suc_page .suc_icon svg {
    width: 72px;
    height: 72px
}

.suc_page .suc_heading {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #436359;
    margin: 0 0 16px
}

.suc_page .suc_sub {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.3;
    color: #588A81;
    margin: 0 0 32px
}

.suc_page .suc_body {
    font-size: 16px;
    line-height: 1.6;
    color: #2c3e38;
    margin: 0 0 32px
}

.suc_page .suc_divider {
    width: 64px;
    height: 3px;
    background: linear-gradient(90deg, #436359, transparent);
    margin: 0 auto 32px;
    border-radius: 4px
}

.suc_page .suc_actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

.suc_page .btn_primary {
    display: inline-block;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #436359;
    background: transparent;
    border: 2px solid #436359;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .2s ease-out;
    z-index: 0
}

.suc_page .btn_primary::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #436359;
    transition: height .18s ease-out;
    z-index: -1
}

.suc_page .btn_primary:hover {
    color: #fff
}

.suc_page .btn_primary:hover::before {
    height: 100%
}

.suc_page .btn_primary:focus-visible {
    outline: 3px solid #77ACA1;
    outline-offset: 3px
}

.suc_page .btn_sec {
    display: inline-block;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #588A81;
    background: transparent;
    border: 2px solid #77ACA1;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .2s ease-out;
    z-index: 0
}

.suc_page .btn_sec::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #77ACA1;
    transition: height .15s ease;
    z-index: -1
}

.suc_page .btn_sec:hover {
    color: #fff
}

.suc_page .btn_sec:hover::before {
    height: 100%
}

.suc_page .btn_sec:focus-visible {
    outline: 3px solid #436359;
    outline-offset: 3px
}

.suc_page .suc_note {
    margin-top: 32px;
    font-size: 16px;
    line-height: 1.6;
    color: #588A81
}

.suc_page .suc_note a {
    color: #436359;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: color .15s ease
}

.suc_page .suc_note a:hover {
    color: #77ACA1
}

@media (max-width: 640px) {
    .suc_page {
        padding: 64px 16px
    }

    .suc_page .suc_heading {
        font-size: 32px
    }

    .suc_page .suc_sub {
        font-size: 16px
    }

    .suc_page .suc_actions {
        flex-direction: column;
        align-items: center
    }

    .suc_page .btn_primary,
    .suc_page .btn_sec {
        width: 100%;
        text-align: center
    }
}