html {
    font-size: 100%
}

body {
    margin: 0;
    min-height: 100dvh;
    overflow-x: hidden
}

.topbar {
    background: #1C2E75;
    padding: 8px 32px;
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.topbar-email {
    font-family: 'Alegreya', serif;
    font-size: 14px;
    color: #F0F0F0;
    letter-spacing: .06em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .5s ease-in-out
}

.topbar-email:hover,
.topbar-email:focus {
    color: #FF3651;
    box-shadow: none;
    outline: none
}

.topbar-email:focus-visible {
    box-shadow: 0 0 0 2px #FF3651;
    border-radius: 7px
}

.topbar-email .gg-mail {
    --gg-size: 16px;
    color: #FF3651
}

.headerplate {
    background: #fff;
    box-shadow: 0 7px 25px 1px #1c2e7514;
    position: relative
}

.headerplate-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: stretch;
    min-height: 88px
}

.brandpod {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 16px 32px 16px 0;
    border-right: 2px solid #F0F0F0
}

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

.brandpod a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px #FF3651;
    border-radius: 7px
}

.logocell {
    background: #1C2E75;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 1px 6px 1px #1c2e7512;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px
}

.logocell img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block
}

.brandname {
    font-family: 'Alegreya', serif;
    font-size: 14px;
    font-weight: 700;
    color: #1C2E75;
    letter-spacing: .12em;
    text-transform: uppercase;
    line-height: 1.2
}

.primarynav {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 32px
}

.primarynav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px
}

.primarynav ul li {
    position: relative
}

.primarynav ul li a {
    font-family: 'Alegreya', serif;
    font-size: 21px;
    font-weight: 400;
    color: #1C2E75;
    text-decoration: none;
    padding: 8px 16px;
    display: block;
    border-radius: 7px;
    line-height: 1.2;
    transition: color .5s ease-in-out, background-color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.primarynav ul li a:hover,
.primarynav ul li a:focus-visible {
    color: #FF3651;
    background-color: #F0F0F0;
    outline: none
}

.primarynav ul li a:focus-visible {
    box-shadow: 0 0 0 2px #FF3651
}

.primarynav ul li.hasdrop>a {
    display: flex;
    align-items: center;
    gap: 8px
}

.primarynav ul li.hasdrop>a .gg-chevron-down {
    --gg-size: 14px;
    color: #FF3651;
    transition: transform .5s ease-in-out
}

.primarynav ul li.hasdrop:hover>a .gg-chevron-down,
.primarynav ul li.hasdrop:focus-within>a .gg-chevron-down {
    transform: rotate(180deg)
}

.dropdeck {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 36px 1px #ff36511a;
    min-width: 220px;
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .5s ease-in-out, transform .5s ease-in-out;
    z-index: 200
}

.primarynav ul li.hasdrop:hover .dropdeck,
.primarynav ul li.hasdrop:focus-within .dropdeck {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0)
}

.dropdeck a {
    font-family: 'Alegreya', serif;
    font-size: 21px;
    color: #1C2E75;
    padding: 8px 16px;
    display: block;
    border-radius: 7px;
    text-decoration: none;
    transition: color .5s ease-in-out, background-color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.dropdeck a:hover,
.dropdeck a:focus-visible {
    color: #FF3651;
    background-color: #F0F0F0;
    outline: none
}

.dropdeck a:focus-visible {
    box-shadow: 0 0 0 2px #FF3651
}

.accentstrip {
    height: 4px;
    background: linear-gradient(90deg, #FF3651 0%, #1C2E75 100%)
}

@media (max-width: 900px) {
    .headerplate-inner {
        flex-wrap: wrap;
        min-height: auto;
        padding: 16px;
        gap: 16px
    }

    .brandpod {
        border-right: none;
        padding: 0
    }

    .primarynav {
        padding: 0;
        width: 100%;
        flex: none;
        padding-bottom: 16px
    }

    .primarynav ul {
        gap: 4px
    }

    .primarynav ul li a {
        font-size: 21px;
        padding: 8px 16px;
        min-height: 44px;
        display: flex;
        align-items: center
    }
}

@media (max-width: 600px) {
    .topbar {
        padding: 8px 16px
    }

    .primarynav ul li a {
        font-size: 14px
    }

    .dropdeck {
        min-width: 180px
    }

    .dropdeck a {
        font-size: 14px
    }
}

.footerplate {
    background: #1C2E75;
    padding: 32px
}

.footerplate-inner {
    max-width: 1500px;
    margin: 0 auto
}

.footercard {
    background: #ffffff0f;
    border-radius: 12px;
    box-shadow: 0 1px 6px 1px #1c2e7512 inset 0 1px 2px #ffffff0a;
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 32px;
    flex-wrap: wrap
}

.footerbrand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex-shrink: 0;
    min-width: 160px
}

.footerlogocell {
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 1px 6px 1px #1c2e7512;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px
}

.footerlogocell img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block
}

.footerbrandname {
    font-family: 'Alegreya', serif;
    font-size: 14px;
    font-weight: 700;
    color: #F0F0F0;
    letter-spacing: .12em;
    text-transform: uppercase;
    line-height: 1.2
}

.footerbrandtag {
    font-family: 'Alegreya', serif;
    font-size: 14px;
    color: #f0f0f099;
    line-height: 1.55
}

.footerdivider {
    width: 1px;
    background: #f0f0f026;
    align-self: stretch;
    flex-shrink: 0
}

.footerlinks {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center
}

.footerlinks-label {
    font-family: 'Alegreya', serif;
    font-size: 14px;
    color: #f0f0f080;
    letter-spacing: .1em;
    text-transform: uppercase;
    line-height: 1.2
}

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

.footerlinks ul li a {
    font-family: 'Alegreya', serif;
    font-size: 21px;
    color: #F0F0F0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 7px;
    padding: 4px 8px;
    transition: color .5s ease-in-out, background-color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.footerlinks ul li a:hover,
.footerlinks ul li a:focus-visible {
    color: #FF3651;
    background-color: #ff36511a;
    outline: none
}

.footerlinks ul li a:focus-visible {
    box-shadow: 0 0 0 2px #FF3651
}

.footercontact {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center
}

.footercontact-label {
    font-family: 'Alegreya', serif;
    font-size: 14px;
    color: #f0f0f080;
    letter-spacing: .1em;
    text-transform: uppercase;
    line-height: 1.2
}

.footercontact-email {
    font-family: 'Alegreya', serif;
    font-size: 21px;
    color: #F0F0F0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 7px;
    padding: 4px 8px;
    transition: color .5s ease-in-out
}

.footercontact-email:hover,
.footercontact-email:focus-visible {
    color: #FF3651;
    outline: none
}

.footercontact-email:focus-visible {
    box-shadow: 0 0 0 2px #FF3651
}

.footercontact-email .gg-mail {
    --gg-size: 18px;
    color: #FF3651;
    flex-shrink: 0
}

.footerbottom {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f01a;
    display: flex;
    align-items: center;
    justify-content: center
}

.footercopyright {
    font-family: 'Alegreya', serif;
    font-size: 14px;
    color: #f0f0f066;
    line-height: 1.55;
    letter-spacing: .04em
}

@media (max-width: 900px) {
    .footerplate {
        padding: 32px 16px
    }

    .footercard {
        padding: 32px 16px;
        gap: 32px
    }

    .footerdivider {
        display: none
    }

    .footerbrand {
        width: 100%
    }
}

@media (max-width: 600px) {
    .footercard {
        flex-direction: column;
        gap: 32px
    }

    .footerlinks ul li a {
        font-size: 21px
    }

    .footercontact-email {
        font-size: 14px
    }
}

.cookiepopup {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 1500;
    width: 320px;
    max-width: calc(100vw - 32px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 36px 1px #1c2e751a;
    padding: 32px;
    display: none;
    flex-direction: column;
    gap: 16px;
    transform: translateX(calc(100% + 32px));
    transition: transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.cookiepopup.visible {
    transform: translateX(0)
}

.cookiepopup-description {
    font-family: 'Alegreya', serif;
    font-size: 14px;
    color: #1C2E75;
    line-height: 1.55
}

.cookiepopup-title {
    font-family: 'Alegreya', serif;
    font-size: 21px;
    font-weight: 700;
    color: #1C2E75;
    line-height: 1.2
}

.cookiepopup-actions {
    display: flex;
    gap: 8px
}

.cookiepopup-accept,
.cookiepopup-reject {
    font-family: 'Alegreya', serif;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 32px;
    padding: 8px 16px;
    cursor: pointer;
    flex: 1;
    min-height: 44px;
    background: linear-gradient(135deg, #FF3651 0%, #1C2E75 100%);
    background-size: 200% 200%;
    background-position: 0 0;
    color: #fff;
    transition: background-position .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .5s ease-in-out;
    letter-spacing: .04em
}

.cookiepopup-reject {
    background: #F0F0F0;
    color: #1C2E75
}

.cookiepopup-accept:hover,
.cookiepopup-accept:focus-visible {
    background-position: 100% 100%;
    outline: none
}

.cookiepopup-accept:focus-visible,
.cookiepopup-reject:focus-visible {
    box-shadow: 0 0 0 2px #FF3651;
    outline: none
}

.cookiepopup-reject:hover,
.cookiepopup-reject:focus-visible {
    background: #1C2E75;
    color: #fff
}

@media (max-width: 600px) {
    .cookiepopup {
        bottom: 16px;
        right: 16px;
        width: calc(100vw - 32px)
    }
}

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

.policy-container p {
    font-size: 21px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #2a2a35
}

.policy-container ul,
.policy-container ol {
    font-size: 21px;
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 32px;
    color: #2a2a35
}

.policy-container ul {
    list-style-type: disc
}

.policy-container ol {
    list-style-type: decimal
}

.policy-container li {
    font-size: 21px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #2a2a35
}

.policy-container li:last-child {
    margin-bottom: 0
}

.policy-container ul ul,
.policy-container ol ol,
.policy-container ul ol,
.policy-container ol ul {
    margin-top: 8px;
    margin-bottom: 8px
}

.policy-container strong,
.policy-container b {
    font-weight: 700;
    color: #1C2E75;
    letter-spacing: .01em
}

.policy-container hr {
    border: none;
    border-top: 2px solid #F0F0F0;
    margin: 32px 0;
    box-shadow: inset 0 1px 2px #1c2e7512
}

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

.policy-container div p:last-child {
    margin-bottom: 0
}

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

    .policy-container p,
    .policy-container ul,
    .policy-container ol,
    .policy-container li {
        font-size: 21px;
        line-height: 1.8
    }
}

@media (max-width: 600px) {
    .policy-container {
        padding: 16px
    }

    .policy-container p,
    .policy-container ul,
    .policy-container ol,
    .policy-container li {
        font-size: 14px;
        line-height: 1.8
    }

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

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

.blogdetail .titlesection {
    position: relative;
    padding: 54px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: end;
    background: #F0F0F0
}

.blogdetail .titlesection .titlebg {
    position: absolute;
    inset: 0;
    background-image:url({{image_src}});
    background-size: cover;
    background-position: center;
    filter: brightness(0.38) saturate(0.6);
    z-index: 0
}

.blogdetail .titlesection .titlevignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 120% 90% at 50% 110%, #1c2e75b8 0%, transparent 70%);
    z-index: 1;
    pointer-events: none
}

.blogdetail .titlesection .titlebignumber {
    position: absolute;
    top: 8px;
    right: 32px;
    font-size: 220px;
    line-height: 1.2;
    font-weight: 900;
    color: #ffffff0d;
    letter-spacing: -8px;
    z-index: 2;
    user-select: none;
    pointer-events: none
}

.blogdetail .titlesection .titletext {
    position: relative;
    z-index: 3;
    grid-column: 1 / 2
}

.blogdetail .titlesection .titletext .titlelabel {
    display: inline-block;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .18em;
    color: #FF3651;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 16px;
    border: 1px solid #ff365166;
    padding: 4px 16px;
    border-radius: 32px
}

.blogdetail .titlesection .titletext h1 {
    font-size: 54px;
    line-height: 1.2;
    color: #fff;
    font-weight: 900;
    margin: 0 0 16px
}

.blogdetail .titlesection .titletext h1 .accentword {
    color: #FF3651
}

.blogdetail .titlesection .titletext .titledot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 48px;
    background: #FF3651;
    margin-left: 8px;
    vertical-align: middle
}

.blogdetail .titlesection .titletext .manifesto {
    font-size: 21px;
    line-height: 1.55;
    color: #ffffffd1;
    max-width: 560px;
    margin: 0
}

.blogdetail .titlesection .titleimage {
    position: relative;
    z-index: 3;
    grid-column: 2 / 3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 36px 1px #ff36511a
}

.blogdetail .titlesection .titleimage img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: filter .55s ease-in-out
}

.blogdetail .titlesection .titleimage:hover img {
    filter: saturate(0)
}

.blogdetail .titlesection .authorstrip {
    position: relative;
    z-index: 3;
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px dotted #ffffff2e
}

.blogdetail .titlesection .authorstrip .authorname {
    font-size: 14px;
    line-height: 1.2;
    color: #ffffffb3;
    letter-spacing: .08em
}

.blogdetail .titlesection .authorstrip .authorname strong {
    color: #fff;
    font-weight: 700
}

.blogdetail .titlesection .authorstrip .reportlink {
    margin-left: auto;
    font-size: 14px;
    line-height: 1.2;
    color: #ffffff80;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 4px 16px;
    border-radius: 32px;
    border: 1px solid #ffffff26;
    transition: color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.blogdetail .titlesection .authorstrip .reportlink:hover {
    color: #fff;
    border-color: #FF3651;
    background: #ff36511f
}

.blogdetail .titlesection .authorstrip .reportlink .reporticon {
    width: 14px;
    height: 14px;
    flex-shrink: 0
}

.blogdetail .articlebody {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    padding: 54px 32px;
    background: #fff;
    margin-left: 32px;
    border-radius: 0 0 12px 0;
    position: relative
}

.blogdetail .articlebody::before {
    content: '';
    position: absolute;
    top: 0;
    left: -32px;
    right: 0;
    height: 4px;
    background: linear-gradient(105deg, #1C2E75 0%, #FF3651 100%);
    border-radius: 0
}

.blogdetail .articlebody .articletext {
    min-width: 0
}

.blogdetail .articlebody .articletext p {
    font-size: 21px;
    line-height: 1.8;
    color: #1a2340;
    margin: 0 0 16px
}

.blogdetail .articlebody .articletext p strong {
    color: #FF3651;
    font-weight: 700
}

.blogdetail .articlebody .articletext h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #1C2E75;
    font-weight: 800;
    margin: 32px 0 16px;
    text-align: center;
    position: relative
}

.blogdetail .articlebody .articletext h2::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 48px;
    background: #FF3651;
    margin-left: 8px;
    vertical-align: middle
}

.blogdetail .articlebody .articletext h4 {
    font-size: 21px;
    line-height: 1.55;
    color: #1C2E75;
    font-weight: 700;
    margin: 32px 0 8px
}

.blogdetail .articlebody .articletext del {
    color: #89b;
    text-decoration: line-through
}

.blogdetail .articlebody .articletext ol {
    padding-left: 32px;
    margin: 16px 0
}

.blogdetail .articlebody .articletext ol li {
    font-size: 21px;
    line-height: 1.8;
    color: #1a2340;
    margin-bottom: 8px
}

.blogdetail .articlebody .articletext time {
    font-size: 14px;
    line-height: 1.2;
    color: #89b;
    letter-spacing: .1em;
    display: block;
    margin-bottom: 16px
}

.blogdetail .articlebody .articletext a {
    color: #1C2E75;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .45s ease-in-out, background .45s ease-in-out;
    padding: 0 4px;
    border-radius: 7px
}

.blogdetail .articlebody .articletext a:hover {
    color: #fff;
    background: #1C2E75
}

.blogdetail .articlebody .sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.blogdetail .articlebody .sidebar .sidecard {
    background: #F0F0F0;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 1px 6px 1px #1c2e7512;
    position: relative;
    overflow: hidden
}

.blogdetail .articlebody .sidebar .sidecard::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 2px solid #1c2e7514;
    pointer-events: none
}

.blogdetail .articlebody .sidebar .sidecard .sidecardlabel {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #FF3651;
    font-weight: 700;
    margin-bottom: 16px;
    display: block
}

.blogdetail .articlebody .sidebar .sidecard h5 {
    font-size: 21px;
    line-height: 1.55;
    color: #1C2E75;
    font-weight: 800;
    margin: 0 0 16px
}

.blogdetail .articlebody .sidebar .sidecard p {
    font-size: 14px;
    line-height: 1.8;
    color: #2d3a5c;
    margin: 0
}

.blogdetail .articlebody .sidebar .donutcard {
    background: #1C2E75;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 7px 25px 1px #1c2e7514
}

.blogdetail .articlebody .sidebar .donutcard .sidecardlabel {
    color: #fff9
}

.blogdetail .articlebody .sidebar .donutcard h5 {
    color: #fff
}

.blogdetail .articlebody .sidebar .donutchart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px
}

.blogdetail .articlebody .sidebar .donutsvg {
    width: 140px;
    height: 140px;
    flex-shrink: 0
}

.blogdetail .articlebody .sidebar .donutlegend {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.blogdetail .articlebody .sidebar .donutlegend .legenditem {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.blogdetail .articlebody .sidebar .donutlegend .legenddot {
    width: 10px;
    height: 10px;
    border-radius: 48px;
    flex-shrink: 0
}

.blogdetail .articlebody .sidebar .donutlegend .legendtext {
    font-size: 14px;
    line-height: 1.2;
    color: #fffc;
    flex: 1
}

.blogdetail .articlebody .sidebar .donutlegend .legendvalue {
    font-size: 14px;
    line-height: 1.2;
    color: #fff;
    font-weight: 700
}

.blogdetail .articlebody .sidebar .donutlegend .legendvalue .valueint {
    color: #FF3651
}

.blogdetail .articlebody .sidebar .donutlegend .legendvalue .valuefrac {
    color: #fff9;
    font-weight: 400
}

.blogdetail .panoramasection {
    position: relative;
    padding: 54px 32px;
    margin-right: 32px;
    border-radius: 0 12px 0 0;
    overflow: hidden
}

.blogdetail .panoramasection .panoramabg {
    position: absolute;
    inset: 0;
    background-image:url({{image_src}});
    background-size: 160%;
    background-position: 0 center;
    animation: panoleft 18s ease-in-out infinite alternate;
    z-index: 0
}

@keyframes panoleft {
    from {
        background-position: 0 center
    }

    to {
        background-position: 100% center
    }
}

.blogdetail .panoramasection .panoramaoverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, #1c2e75e0 0%, #ff36519e 100%);
    z-index: 1;
    pointer-events: none
}

.blogdetail .panoramasection .panoramacontent {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    align-items: start
}

.blogdetail .panoramasection .panoramacolumn {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.blogdetail .panoramasection .panoramacolumn .columnlabel {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #ffffff8c;
    font-weight: 700
}

.blogdetail .panoramasection .panoramacolumn h3 {
    font-size: 38px;
    line-height: 1.2;
    color: #fff;
    font-weight: 800;
    margin: 0;
    text-align: center
}

.blogdetail .panoramasection .panoramacolumn h3 .accentword {
    color: #FF3651
}

.blogdetail .panoramasection .panoramacolumn h3::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 48px;
    background: #FF3651;
    margin-left: 8px;
    vertical-align: middle
}

.blogdetail .panoramasection .panoramacolumn p {
    font-size: 21px;
    line-height: 1.8;
    color: #ffffffe0;
    margin: 0
}

.blogdetail .panoramasection .columnborder {
    border-right: 1px dotted #ffffff2e;
    padding-right: 32px
}

.blogdetail .ctastrip {
    padding: 54px 32px;
    background: #F0F0F0;
    margin-left: 64px;
    border-radius: 12px 0 0 0;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    justify-content: space-between
}

.blogdetail .ctastrip::before {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 12px;
    border: 1px solid #1c2e751a;
    pointer-events: none
}

.blogdetail .ctastrip::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 2px solid #1c2e750a;
    pointer-events: none
}

.blogdetail .ctastrip .ctaheading {
    flex: 1
}

.blogdetail .ctastrip .ctaheading h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #1C2E75;
    font-weight: 800;
    margin: 0 0 8px;
    text-align: center
}

.blogdetail .ctastrip .ctaheading h2::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 48px;
    background: #FF3651;
    margin-left: 8px;
    vertical-align: middle
}

.blogdetail .ctastrip .ctaheading p {
    font-size: 21px;
    line-height: 1.55;
    color: #2d3a5c;
    margin: 0;
    text-align: left
}

.blogdetail .ctastrip .ctabuttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0
}

.blogdetail .ctastrip .ctabuttons .btnprimary {
    display: inline-block;
    font-size: 21px;
    line-height: 1.2;
    color: #fff;
    background: #1C2E75;
    padding: 16px 32px;
    border-radius: 48px;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 7px 25px 1px #1c2e7514
}

.blogdetail .ctastrip .ctabuttons .btnprimary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF3651 0%, #1C2E75 100%);
    transition: left .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0
}

.blogdetail .ctastrip .ctabuttons .btnprimary:hover::before {
    left: 0
}

.blogdetail .ctastrip .ctabuttons .btnprimary span {
    position: relative;
    z-index: 1
}

.blogdetail .ctastrip .ctabuttons .btnprimary:hover {
    box-shadow: 0 10px 36px 1px #ff36511a
}

.blogdetail .ctastrip .ctabuttons .btnsecondary {
    display: inline-block;
    font-size: 14px;
    line-height: 1.2;
    color: #1C2E75;
    background: transparent;
    padding: 16px 32px;
    border-radius: 48px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid #1C2E75;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.blogdetail .ctastrip .ctabuttons .btnsecondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1C2E75 0%, #FF3651 100%);
    transition: left .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0
}

.blogdetail .ctastrip .ctabuttons .btnsecondary:hover::before {
    left: 0
}

.blogdetail .ctastrip .ctabuttons .btnsecondary span {
    position: relative;
    z-index: 1
}

.blogdetail .ctastrip .ctabuttons .btnsecondary:hover {
    color: #fff;
    border-color: #FF3651
}

.blogdetail .sectiondivider {
    height: 1px;
    border: none;
    border-top: 1px dotted #c8cfe0;
    margin: 0 32px
}

@media (max-width: 1200px) {
    .blogdetail .titlesection {
        grid-template-columns: 1fr
    }

    .blogdetail .titlesection .titleimage {
        grid-column: 1 / 2
    }

    .blogdetail .titlesection .authorstrip {
        grid-column: 1 / 2
    }

    .blogdetail .articlebody {
        grid-template-columns: 1fr 280px
    }

    .blogdetail .panoramasection .panoramacontent {
        grid-template-columns: 1fr 1fr
    }

    .blogdetail .panoramasection .panoramacolumn:last-child {
        grid-column: 1 / -1
    }
}

@media (max-width: 900px) {
    .blogdetail .titlesection h1 {
        font-size: 38px
    }

    .blogdetail .articlebody {
        grid-template-columns: 1fr;
        margin-left: 16px
    }

    .blogdetail .panoramasection {
        margin-right: 16px
    }

    .blogdetail .panoramasection .panoramacontent {
        grid-template-columns: 1fr
    }

    .blogdetail .panoramasection .columnborder {
        border-right: none;
        border-bottom: 1px dotted #ffffff2e;
        padding-right: 0;
        padding-bottom: 32px
    }

    .blogdetail .ctastrip {
        flex-direction: column;
        margin-left: 16px;
        align-items: stretch
    }

    .blogdetail .ctastrip .ctabuttons {
        flex-direction: row;
        flex-wrap: wrap
    }
}

@media (max-width: 600px) {
    .blogdetail .titlesection {
        padding: 32px 16px
    }

    .blogdetail .titlesection .titletext h1 {
        font-size: 38px
    }

    .blogdetail .titlesection .titlebignumber {
        font-size: 120px
    }

    .blogdetail .articlebody {
        padding: 32px 16px;
        margin-left: 0
    }

    .blogdetail .articlebody .articletext p {
        font-size: 21px
    }

    .blogdetail .panoramasection {
        padding: 32px 16px;
        margin-right: 0
    }

    .blogdetail .ctastrip {
        padding: 32px 16px;
        margin-left: 0
    }

    .blogdetail .ctastrip .ctaheading h2 {
        font-size: 38px
    }

    .blogdetail .ctastrip .ctabuttons {
        flex-direction: column
    }

    .blogdetail .sectiondivider {
        margin: 0 16px
    }
}

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

.infographics ::selection {
    background: #FF3651;
    color: #fff
}

.infographics .titleblock {
    position: relative;
    padding: 70px 32px 80px;
    background: linear-gradient(158deg, #1C2E75 0%, #FF3651 100%);
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 32px;
    align-items: center
}

.infographics .titleblock::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(#ffffff0a 1px, transparent 1px), linear-gradient(90deg, #ffffff0a 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none
}

.infographics .titleblock-text {
    position: relative;
    z-index: 1
}

.infographics .titlelabel {
    display: inline-block;
    font-size: 14px;
    letter-spacing: .18em;
    color: #ffffffa6;
    text-transform: uppercase;
    margin-bottom: 16px
}

.infographics .titleblock-text h1 {
    font-size: 70px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 16px;
    font-weight: 800
}

.infographics .titleblock-text h1 .keyword {
    text-decoration: underline;
    text-decoration-color: #FF3651;
    text-underline-offset: 6px;
    color: #fff
}

.infographics .titledesc {
    font-size: 21px;
    line-height: 1.55;
    color: #ffffffd1;
    max-width: 540px
}

.infographics .titleblock-visual {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.infographics .titlestat {
    background: #ffffff1a;
    border: 1px solid #ffffff2e;
    border-radius: 12px;
    padding: 16px 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(8px);
    transition: background .55s ease-in-out
}

.infographics .titlestat:hover {
    background: #ffffff2e
}

.infographics .titlestat-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0
}

.infographics .titlestat-num {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2
}

.infographics .titlestat-label {
    font-size: 14px;
    color: #ffffffb3;
    line-height: 1.55
}

.infographics .titleblock-border {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent 0%, #FF3651 40%, #1C2E75 100%)
}

.infographics .wavedivider {
    display: block;
    width: 100%;
    line-height: 0;
    overflow: hidden
}

.infographics .wavedivider svg {
    display: block;
    width: 100%
}

.infographics .datametrics {
    background: #0d1a4a;
    padding: 64px 32px;
    position: relative
}

.infographics .datametrics-inner {
    max-width: 1100px;
    margin: 0 auto
}

.infographics .sectionlabel {
    font-size: 14px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #FF3651;
    margin-bottom: 8px;
    display: block
}

.infographics .datametrics h2 {
    font-size: 54px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 8px;
    font-weight: 800
}

.infographics .datametrics h2 .accent {
    color: #FF3651;
    font-weight: 900
}

.infographics .metricsub {
    font-size: 21px;
    line-height: 1.55;
    color: #ffffffa6;
    margin-bottom: 32px;
    max-width: 600px
}

.infographics .metricsgrid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px
}

.infographics .metriccard {
    background: #ffffff0d;
    border: 1px solid #ffffff1a;
    border-radius: 12px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: border-color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.infographics .metriccard:hover {
    border-color: #ff365180
}

.infographics .metriccard.featured {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.infographics .metriccard-num {
    font-size: 54px;
    font-weight: 800;
    color: #FF3651;
    line-height: 1.2;
    margin-bottom: 8px
}

.infographics .metriccard-title {
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.2
}

.infographics .metriccard-desc {
    font-size: 14px;
    line-height: 1.55;
    color: #fff9
}

.infographics .metriccard-bar {
    margin-top: 16px;
    height: 4px;
    background: #ffffff1a;
    border-radius: 32px;
    overflow: hidden
}

.infographics .metriccard-barfill {
    height: 100%;
    border-radius: 32px;
    background: linear-gradient(90deg, #1C2E75, #FF3651);
    animation: barfill 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards
}

@keyframes barfill {
    from {
        width: 0
    }
}

.infographics .metriccard-barfill.w72 {
    width: 72%
}

.infographics .metriccard-barfill.w58 {
    width: 58%
}

.infographics .metriccard-barfill.w85 {
    width: 85%
}

.infographics .metriccard-barfill.w41 {
    width: 41%
}

.infographics .metriccard-diamond {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #FF3651;
    transform: rotate(45deg);
    margin: 0 8px;
    vertical-align: middle;
    flex-shrink: 0
}

.infographics .seasonrow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 16px
}

.infographics .seasoncard {
    background: #ffffff0a;
    border: 1px solid #ffffff14;
    border-radius: 7px;
    padding: 16px;
    text-align: center;
    transition: background .5s ease-in-out
}

.infographics .seasoncard:hover {
    background: #ffffff1a
}

.infographics .seasoncard-name {
    font-size: 14px;
    color: #ffffff80;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 8px
}

.infographics .seasoncard-bar {
    width: 100%;
    background: #ffffff12;
    border-radius: 32px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    margin-bottom: 8px
}

.infographics .seasoncard-fill {
    border-radius: 32px 32px 0 0;
    background: linear-gradient(180deg, #FF3651, #1C2E75);
    transition: height .65s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.infographics .seasoncard-pct {
    font-size: 21px;
    font-weight: 700;
    color: #fff
}

.infographics .wavedivider2 {
    display: block;
    width: 100%;
    line-height: 0;
    overflow: hidden
}

.infographics .wavedivider2 svg {
    display: block;
    width: 100%
}

.infographics .techniques {
    background: #F0F0F0;
    padding: 64px 32px
}

.infographics .techniques-inner {
    max-width: 1100px;
    margin: 0 auto
}

.infographics .techniques h2 {
    font-size: 54px;
    line-height: 1.2;
    color: #1C2E75;
    margin: 0 0 8px;
    font-weight: 800;
    text-align: center
}

.infographics .techniques h2 .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #FF3651;
    border-radius: 48px;
    margin-left: 8px;
    vertical-align: middle;
    position: relative;
    top: -4px
}

.infographics .techniquessub {
    font-size: 21px;
    line-height: 1.55;
    color: #1C2E75;
    text-align: left;
    margin-bottom: 32px;
    max-width: 560px
}

.infographics .imageframe {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 36px 1px #ff36511a
}

.infographics .imageframe::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid #1c2e752e;
    border-radius: 12px;
    pointer-events: none
}

.infographics .imageframe-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
    pointer-events: none;
    border-radius: 12px;
    z-index: 2;
    opacity: .55
}

.infographics .imageframe img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center;
    display: block
}

.infographics .techgrid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 32px;
    align-items: start
}

.infographics .techlist {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.infographics .techitem {
    background: #fff;
    border-radius: 12px;
    padding: 16px 32px;
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 16px;
    box-shadow: 0 1px 6px 1px #1c2e7512;
    transition: box-shadow .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.infographics .techitem:hover {
    box-shadow: 0 7px 25px 1px #1c2e7514
}

.infographics .techitem-rank {
    font-size: 38px;
    font-weight: 800;
    color: #F0F0F0;
    line-height: 1.2;
    text-align: center
}

.infographics .techitem-body h4 {
    font-size: 21px;
    font-weight: 700;
    color: #1C2E75;
    margin: 0 0 4px;
    line-height: 1.2
}

.infographics .techitem-body p {
    font-size: 14px;
    line-height: 1.55;
    color: #444;
    margin: 0
}

.infographics .techitem-pct {
    font-size: 21px;
    font-weight: 800;
    color: #FF3651;
    white-space: nowrap
}

.infographics .techitem-bar {
    grid-column: 2 / 4;
    height: 3px;
    background: #F0F0F0;
    border-radius: 32px;
    overflow: hidden
}

.infographics .techitem-barfill {
    height: 100%;
    border-radius: 32px;
    background: linear-gradient(90deg, #1C2E75, #FF3651);
    animation: barfill 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards
}

.infographics .imagepanel {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.infographics .imagenote {
    background: #1C2E75;
    border-radius: 12px;
    padding: 16px 32px;
    color: #fff
}

.infographics .imagenote h5 {
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff9;
    margin: 0 0 8px
}

.infographics .imagenote p {
    font-size: 14px;
    line-height: 1.55;
    color: #ffffffd9;
    margin: 0
}

.infographics .imagenote .boldaccent {
    color: #FF3651;
    font-weight: 700
}

.infographics .diamond {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #FF3651;
    transform: rotate(45deg);
    margin: 0 8px;
    vertical-align: middle
}

.infographics .clipleft {
    clip-path: inset(0 0 0 0);
    animation: clipreveal .65s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
}

@keyframes clipreveal {
    from {
        clip-path: inset(0 0 100% 0)
    }

    to {
        clip-path: inset(0 0 0% 0)
    }
}

.infographics .panimage {
    animation: panimage 18s linear infinite alternate
}

@keyframes panimage {
    from {
        background-position: 0 center
    }

    to {
        background-position: 100% center
    }
}

@media (max-width: 900px) {
    .infographics .titleblock {
        grid-template-columns: 1fr;
        padding: 48px 16px
    }

    .infographics .titleblock-text h1 {
        font-size: 54px
    }

    .infographics .metricsgrid {
        grid-template-columns: 1fr 1fr
    }

    .infographics .metriccard.featured {
        grid-column: span 2;
        grid-row: auto
    }

    .infographics .techgrid {
        grid-template-columns: 1fr
    }

    .infographics .seasonrow {
        grid-template-columns: repeat(2, 1fr)
    }

    .infographics .datametrics h2 {
        font-size: 38px
    }

    .infographics .techniques h2 {
        font-size: 38px
    }
}

@media (max-width: 600px) {
    .infographics .titleblock-text h1 {
        font-size: 38px
    }

    .infographics .metricsgrid {
        grid-template-columns: 1fr
    }

    .infographics .metriccard.featured {
        grid-column: auto
    }

    .infographics .seasonrow {
        grid-template-columns: repeat(2, 1fr)
    }

    .infographics .techitem {
        grid-template-columns: 40px 1fr auto;
        padding: 16px
    }

    .infographics .datametrics {
        padding: 48px 16px
    }

    .infographics .techniques {
        padding: 48px 16px
    }

    .infographics .datametrics h2 {
        font-size: 38px
    }

    .infographics .techniques h2 {
        font-size: 38px
    }
}

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

.aboutauthor .profileband {
    position: relative;
    padding: 32px 32px 64px;
    background: linear-gradient(170deg, #e8eaf6 0%, #ffd6da 60%, #FF3651 100%)
}

.aboutauthor .profileband::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(-47deg, transparent 0px, transparent 18px, #1c2e750a 18px, #1c2e750a 20px);
    pointer-events: none
}

.aboutauthor .profileband .scanoverlay {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, transparent 0px, transparent 3px, #1c2e7508 3px, #1c2e7508 4px);
    pointer-events: none
}

.aboutauthor .profileband .bandgrid {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 32px;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto
}

.aboutauthor .profileband .imageholder {
    flex: 0 0 auto;
    width: 320px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 36px 1px #ff36511a;
    position: relative
}

.aboutauthor .profileband .imageholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block
}

.aboutauthor .profileband .imageholder .cornerstripe {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    pointer-events: none
}

.aboutauthor .profileband .imageholder .cornerstripe::after {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, transparent 50%, #ff36518c 50%)
}

.aboutauthor .profileband .bandtext {
    flex: 1 1 auto;
    padding-bottom: 16px
}

.aboutauthor .profileband .bandtext .authorlabel {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .14em;
    color: #1C2E75;
    background: #ffffff8c;
    border-radius: 32px;
    padding: 4px 16px;
    margin-bottom: 16px;
    text-transform: uppercase
}

.aboutauthor .profileband .bandtext h1 {
    font-size: 70px;
    line-height: 1.2;
    color: #1C2E75;
    margin: 0 0 8px;
    font-weight: 900
}

.aboutauthor .profileband .bandtext h1 .accentword {
    color: #FF3651
}

.aboutauthor .profileband .bandtext .dotaccent {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #FF3651;
    border-radius: 48px;
    margin-left: 6px;
    vertical-align: middle;
    margin-bottom: 4px
}

.aboutauthor .profileband .bandtext .subdesc {
    font-size: 21px;
    line-height: 1.55;
    color: #1C2E75;
    max-width: 560px;
    margin: 16px 0 0;
    text-align: left
}

.aboutauthor .profileband .bandtext .subdesc strong {
    color: #FF3651
}

.aboutauthor .dividerband {
    height: 8px;
    background: linear-gradient(90deg, #FF3651 0%, #ff365100 100%)
}

.aboutauthor .storyarea {
    padding: 64px 32px;
    background: linear-gradient(180deg, #fff 0%, #F0F0F0 100%);
    position: relative
}

.aboutauthor .storyarea .storygrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto 32px
}

.aboutauthor .storyarea .storyheadrow {
    max-width: 1100px;
    margin: 0 auto 32px;
    text-align: center
}

.aboutauthor .storyarea .storyheadrow h2 {
    font-size: 54px;
    line-height: 1.2;
    color: #1C2E75;
    margin: 0 0 8px;
    font-weight: 900
}

.aboutauthor .storyarea .storyheadrow h2 .accentword {
    color: #FF3651
}

.aboutauthor .storyarea .storyheadrow .dotaccent {
    display: inline-block;
    width: 9px;
    height: 9px;
    background: #FF3651;
    border-radius: 48px;
    margin-left: 5px;
    vertical-align: middle;
    margin-bottom: 3px
}

.aboutauthor .storyarea .storyheadrow .subline {
    font-size: 21px;
    line-height: 1.55;
    color: #444d6e;
    text-align: left;
    max-width: 640px;
    margin: 0 auto
}

.aboutauthor .storyarea .storycard {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 1px 6px 1px #1c2e7512;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.aboutauthor .storyarea .storycard.visible {
    opacity: 1;
    transform: translateY(0)
}

.aboutauthor .storyarea .storycard:nth-child(2) {
    transition-delay: .12s
}

.aboutauthor .storyarea .storycard:nth-child(3) {
    transition-delay: .24s
}

.aboutauthor .storyarea .storycard .cardcorner {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    overflow: hidden;
    pointer-events: none
}

.aboutauthor .storyarea .storycard .cardcorner::after {
    content: "";
    position: absolute;
    top: -15px;
    right: -15px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, transparent 50%, #ff36512e 50%)
}

.aboutauthor .storyarea .storycard .cardicon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #F0F0F0 0%, #e8eaf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px
}

.aboutauthor .storyarea .storycard .cardicon svg {
    width: 24px;
    height: 24px
}

.aboutauthor .storyarea .storycard h3 {
    font-size: 21px;
    line-height: 1.2;
    color: #1C2E75;
    margin: 0 0 8px;
    font-weight: 800
}

.aboutauthor .storyarea .storycard .leadlabel {
    font-size: 14px;
    font-weight: 700;
    color: #FF3651;
    letter-spacing: .1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px
}

.aboutauthor .storyarea .storycard p {
    font-size: 14px;
    line-height: 1.8;
    color: #2c3555;
    margin: 0
}

.aboutauthor .storyarea .imagepair {
    display: flex;
    flex-direction: row;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch
}

.aboutauthor .storyarea .imagepair .pairimage {
    flex: 0 0 auto;
    width: 340px;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 7px 25px 1px #1c2e7514;
    position: relative
}

.aboutauthor .storyarea .imagepair .pairimage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.aboutauthor .storyarea .imagepair .pairimage .cornerstripe {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    overflow: hidden;
    pointer-events: none
}

.aboutauthor .storyarea .imagepair .pairimage .cornerstripe::after {
    content: "";
    position: absolute;
    top: -14px;
    right: -14px;
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, transparent 50%, #1c2e7540 50%)
}

.aboutauthor .storyarea .imagepair .paircopy {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px
}

.aboutauthor .storyarea .imagepair .paircopy h4 {
    font-size: 38px;
    line-height: 1.2;
    color: #1C2E75;
    margin: 0;
    font-weight: 900
}

.aboutauthor .storyarea .imagepair .paircopy h4 .accentword {
    color: #FF3651
}

.aboutauthor .storyarea .imagepair .paircopy h4 .dotaccent {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #FF3651;
    border-radius: 48px;
    margin-left: 5px;
    vertical-align: middle;
    margin-bottom: 2px
}

.aboutauthor .storyarea .imagepair .paircopy p {
    font-size: 14px;
    line-height: 1.8;
    color: #2c3555;
    margin: 0
}

.aboutauthor .storyarea .imagepair .paircopy .leadlabel {
    font-size: 14px;
    font-weight: 700;
    color: #FF3651;
    letter-spacing: .1em;
    text-transform: uppercase;
    display: block
}

.aboutauthor .dividerband2 {
    height: 8px;
    background: linear-gradient(90deg, #1c2e7500 0%, #1C2E75 100%)
}

.aboutauthor .contactstrip {
    padding: 64px 32px 48px;
    background: linear-gradient(180deg, #1C2E75 0%, #0e1a47 100%);
    position: relative;
    overflow: hidden
}

.aboutauthor .contactstrip::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(90deg, #FF3651 0px, #FF3651 24px, transparent 24px, transparent 36px);
    pointer-events: none
}

.aboutauthor .contactstrip .zigzagtop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    pointer-events: none;
    overflow: hidden
}

.aboutauthor .contactstrip .zigzagtop svg {
    width: 100%;
    height: 20px;
    display: block
}

.aboutauthor .contactstrip .stripgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start
}

.aboutauthor .contactstrip .striphead {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.aboutauthor .contactstrip .striphead h2 {
    font-size: 54px;
    line-height: 1.2;
    color: #fff;
    margin: 0;
    font-weight: 900
}

.aboutauthor .contactstrip .striphead h2 .accentword {
    color: #FF3651
}

.aboutauthor .contactstrip .striphead h2 .dotaccent {
    display: inline-block;
    width: 9px;
    height: 9px;
    background: #FF3651;
    border-radius: 48px;
    margin-left: 5px;
    vertical-align: middle;
    margin-bottom: 3px
}

.aboutauthor .contactstrip .striphead p {
    font-size: 21px;
    line-height: 1.55;
    color: #f0f0f0d9;
    margin: 0;
    text-align: left
}

.aboutauthor .contactstrip .stripdetails {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.aboutauthor .contactstrip .stripdetails .detailrow {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    background: #ffffff12;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 1px 6px 1px #ff365112;
    transition: background .5s ease-in-out
}

.aboutauthor .contactstrip .stripdetails .detailrow:hover {
    background: #ffffff21
}

.aboutauthor .contactstrip .stripdetails .detailrow .detailicon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #ff36512e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.aboutauthor .contactstrip .stripdetails .detailrow .detailicon svg {
    width: 20px;
    height: 20px
}

.aboutauthor .contactstrip .stripdetails .detailrow .detailtext {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.aboutauthor .contactstrip .stripdetails .detailrow .detailtext .detaillabel {
    font-size: 14px;
    font-weight: 700;
    color: #f0f0f099;
    letter-spacing: .1em;
    text-transform: uppercase
}

.aboutauthor .contactstrip .stripdetails .detailrow .detailtext a {
    font-size: 21px;
    line-height: 1.2;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color .5s ease-in-out
}

.aboutauthor .contactstrip .stripdetails .detailrow .detailtext a:hover {
    color: #FF3651
}

.aboutauthor .contactstrip .imagepairstrip {
    display: flex;
    flex-direction: row;
    gap: 16px;
    max-width: 1100px;
    margin: 32px auto 0
}

.aboutauthor .contactstrip .imagepairstrip .stripimage {
    flex: 1 1 0;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 7px 25px 1px #ff365114;
    position: relative
}

.aboutauthor .contactstrip .imagepairstrip .stripimage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.aboutauthor .contactstrip .imagepairstrip .stripimage .cornerstripe {
    position: absolute;
    top: 0;
    right: 0;
    width: 56px;
    height: 56px;
    overflow: hidden;
    pointer-events: none
}

.aboutauthor .contactstrip .imagepairstrip .stripimage .cornerstripe::after {
    content: "";
    position: absolute;
    top: -12px;
    right: -12px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, transparent 50%, #ff365173 50%)
}

@media (max-width: 900px) {
    .aboutauthor .profileband .bandgrid {
        flex-direction: column;
        align-items: flex-start
    }

    .aboutauthor .profileband .imageholder {
        width: 100%;
        height: 280px
    }

    .aboutauthor .profileband .bandtext h1 {
        font-size: 54px
    }

    .aboutauthor .storyarea .storygrid {
        grid-template-columns: 1fr 1fr
    }

    .aboutauthor .storyarea .imagepair {
        flex-direction: column
    }

    .aboutauthor .storyarea .imagepair .pairimage {
        width: 100%;
        height: 220px
    }

    .aboutauthor .contactstrip .stripgrid {
        grid-template-columns: 1fr
    }

    .aboutauthor .contactstrip .striphead h2 {
        font-size: 38px
    }
}

@media (max-width: 600px) {
    .aboutauthor .profileband {
        padding: 32px 16px 48px
    }

    .aboutauthor .profileband .bandtext h1 {
        font-size: 38px
    }

    .aboutauthor .profileband .bandtext .subdesc {
        font-size: 14px
    }

    .aboutauthor .storyarea {
        padding: 32px 16px
    }

    .aboutauthor .storyarea .storygrid {
        grid-template-columns: 1fr
    }

    .aboutauthor .storyarea .storyheadrow h2 {
        font-size: 38px
    }

    .aboutauthor .storyarea .imagepair .paircopy h4 {
        font-size: 21px
    }

    .aboutauthor .contactstrip {
        padding: 48px 16px 32px
    }

    .aboutauthor .contactstrip .striphead h2 {
        font-size: 38px
    }

    .aboutauthor .contactstrip .imagepairstrip {
        flex-direction: column
    }

    .aboutauthor .contactstrip .imagepairstrip .stripimage {
        height: 160px
    }
}

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

.first .titleblock {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 64px 32px 32px;
    position: relative
}

.first .titleblock .quotemark {
    position: absolute;
    top: 32px;
    left: 24px;
    font-size: 220px;
    line-height: 1.2;
    color: #FF3651;
    opacity: .07;
    pointer-events: none;
    user-select: none;
    z-index: 0
}

.first .titleblock .leftanchor {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 32px
}

.first .titleblock .leftanchor .sitecategory {
    font-size: 14px;
    letter-spacing: .18em;
    color: #FF3651;
    font-weight: 700;
    text-transform: uppercase
}

.first .titleblock .leftanchor h1 {
    font-size: 70px;
    line-height: 1.2;
    color: #1C2E75;
    margin: 0
}

.first .titleblock .leftanchor h1 .accentword {
    color: #FF3651;
    font-weight: 900
}

.first .titleblock .leftanchor .tagline {
    font-size: 21px;
    line-height: 1.55;
    color: #2a2a2a;
    max-width: 480px
}

.first .titleblock .leftanchor .tagline strong {
    color: #1C2E75
}

.first .titleblock .leftanchor .dotaccent {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #FF3651;
    border-radius: 48px;
    margin-left: 6px;
    vertical-align: middle
}

.first .titleblock .rightimage {
    position: relative;
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 36px 1px #ff36511a
}

.first .titleblock .rightimage img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 12px
}

.first .titleblock .rightimage::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #1c2e752e 0%, #ff36511a 100%);
    z-index: 1;
    border-radius: 12px;
    pointer-events: none
}

.first .titleblock .rightimage::after {
    content: "";
    position: absolute;
    inset: 6px;
    border: 2px solid #ff365138;
    border-radius: 7px;
    z-index: 2;
    pointer-events: none
}

.first .divider-accent {
    width: 100%;
    height: 2px;
    background: #FF3651;
    margin: 0 32px;
    width: calc(100% - 64px)
}

.first .postlisting {
    padding: 32px
}

.first .postlisting .listingheader {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 32px
}

.first .postlisting .listingheader h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #1C2E75;
    margin: 0
}

.first .postlisting .listingheader .dotaccent {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #FF3651;
    border-radius: 48px;
    margin-left: 4px;
    vertical-align: middle
}

.first .postlisting .listingheader .alllink {
    margin-left: auto;
    font-size: 14px;
    letter-spacing: .1em;
    color: #1C2E75;
    text-decoration: none;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 32px;
    border: 2px solid #1C2E75;
    transition: background .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.first .postlisting .listingheader .alllink:hover {
    background: #1C2E75;
    color: #fff
}

.first .postlisting .postsrow {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 32px
}

.first .postlisting .postsrow .postcard {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 7px 25px 1px #1c2e7514;
    background: #fff;
    border-top: 3px solid #FF3651;
    transition: box-shadow .55s ease-in-out, transform .55s ease-in-out
}

.first .postlisting .postsrow .postcard:hover {
    box-shadow: 0 10px 36px 1px #ff36511a;
    transform: translateY(-4px)
}

.first .postlisting .postsrow .postcard .cardimg {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden
}

.first .postlisting .postsrow .postcard .cardimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .65s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.first .postlisting .postsrow .postcard:hover .cardimg img {
    transform: scale(1.04)
}

.first .postlisting .postsrow .postcard .cardbody {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1
}

.first .postlisting .postsrow .postcard .cardbody .cardauthor {
    font-size: 14px;
    color: #FF3651;
    font-weight: 700;
    letter-spacing: .08em
}

.first .postlisting .postsrow .postcard .cardbody h3 {
    font-size: 21px;
    line-height: 1.55;
    color: #1C2E75;
    margin: 0
}

.first .postlisting .postsrow .postcard .cardbody .carddesc {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin: 0
}

.first .postlisting .postsrow .postcard .cardbody .readlink {
    margin-top: auto;
    padding-top: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #1C2E75;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color .45s ease-in-out
}

.first .postlisting .postsrow .postcard .cardbody .readlink:hover {
    color: #FF3651
}

.first .postlisting .postsrow .postcard.featured .cardbody h3 {
    font-size: 38px;
    line-height: 1.2
}

.first .postlisting .postsrow .postcard.featured .cardbody .carddesc {
    font-size: 21px;
    line-height: 1.55
}

.first .divider-stripe {
    height: 2px;
    background: linear-gradient(90deg, #F0F0F0 0%, #FF3651 50%, #F0F0F0 100%);
    margin: 0 32px
}

.first .thematicmap {
    padding: 32px;
    background: #F0F0F0;
    position: relative;
    overflow: hidden
}

.first .thematicmap .stripebg {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(90deg, transparent, transparent 28px, #1c2e750a 28px, #1c2e750a 30px);
    pointer-events: none
}

.first .thematicmap .mapheader {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 1
}

.first .thematicmap .mapheader h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #1C2E75;
    margin: 0 0 8px;
    text-align: center
}

.first .thematicmap .mapheader .dotaccent {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #FF3651;
    border-radius: 48px;
    margin-left: 4px;
    vertical-align: middle
}

.first .thematicmap .mapheader p {
    font-size: 21px;
    line-height: 1.55;
    color: #333;
    text-align: left;
    max-width: 600px;
    margin: 0
}

.first .thematicmap .themegrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    z-index: 1
}

.first .thematicmap .themegrid .themecard {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 1px 6px 1px #1c2e7512;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 3px solid #1C2E75;
    transition: box-shadow .5s ease-in-out
}

.first .thematicmap .themegrid .themecard:hover {
    box-shadow: 0 7px 25px 1px #1c2e7514
}

.first .thematicmap .themegrid .themecard .themeicon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center
}

.first .thematicmap .themegrid .themecard h4 {
    font-size: 21px;
    line-height: 1.2;
    color: #1C2E75;
    margin: 0
}

.first .thematicmap .themegrid .themecard p {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    margin: 0
}

.first .thematicmap .themegrid .themecard a {
    font-size: 14px;
    color: #FF3651;
    font-weight: 700;
    text-decoration: none;
    margin-top: auto;
    transition: color .5s ease-in-out
}

.first .thematicmap .themegrid .themecard a:hover {
    color: #1C2E75
}

.first .divider-plain {
    height: 2px;
    background: #F0F0F0;
    margin: 0 32px
}

.first .depthblock {
    padding: 32px;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 32px;
    align-items: center
}

.first .depthblock .depthvisual {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center
}

.first .depthblock .depthvisual .ringswrap {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: center
}

.first .depthblock .depthvisual .ring {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center
}

.first .depthblock .depthvisual .ring svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg)
}

.first .depthblock .depthvisual .ring .ringlabel {
    position: relative;
    z-index: 1;
    text-align: center
}

.first .depthblock .depthvisual .ring .ringlabel .ringval {
    font-size: 21px;
    font-weight: 900;
    color: #1C2E75;
    line-height: 1.2;
    display: block
}

.first .depthblock .depthvisual .ring .ringlabel .ringdesc {
    font-size: 14px;
    color: #555;
    line-height: 1.2;
    display: block
}

.first .depthblock .depthtext {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.first .depthblock .depthtext h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #1C2E75;
    margin: 0
}

.first .depthblock .depthtext h2 .dotaccent {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #FF3651;
    border-radius: 48px;
    margin-left: 4px;
    vertical-align: middle
}

.first .depthblock .depthtext .leadlabel {
    font-size: 14px;
    font-weight: 700;
    color: #FF3651;
    letter-spacing: .12em;
    text-transform: uppercase
}

.first .depthblock .depthtext p {
    font-size: 21px;
    line-height: 1.55;
    color: #333;
    margin: 0
}

.first .depthblock .depthtext p strong {
    color: #FF3651
}

.first .depthblock .depthtext .infographicslink {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 32px;
    background: linear-gradient(135deg, #1C2E75 0%, #FF3651 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 7px 25px 1px #ff365114;
    transition: box-shadow .55s ease-in-out, opacity .55s ease-in-out;
    align-self: flex-start
}

.first .depthblock .depthtext .infographicslink:hover {
    box-shadow: 0 10px 36px 1px #ff36511a;
    opacity: .9
}

.first .authorblock {
    padding: 32px;
    background: linear-gradient(155deg, #1C2E75 0%, #FF3651 100%);
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 32px;
    align-items: center;
    position: relative;
    overflow: hidden
}

.first .authorblock .authordeco {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 220px;
    height: 220px;
    border-radius: 48px;
    border: 2px solid #ffffff14;
    pointer-events: none
}

.first .authorblock .authordeco2 {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 140px;
    height: 140px;
    border-radius: 48px;
    border: 2px solid #ffffff0d;
    pointer-events: none
}

.first .authorblock .authorimage {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 36px 1px #1c2e751a;
    position: relative;
    z-index: 1
}

.first .authorblock .authorimage img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: top;
    display: block
}

.first .authorblock .authorcopy {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1
}

.first .authorblock .authorcopy .authorlabel {
    font-size: 14px;
    letter-spacing: .18em;
    color: #ffffffb3;
    font-weight: 700;
    text-transform: uppercase
}

.first .authorblock .authorcopy h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #fff;
    margin: 0
}

.first .authorblock .authorcopy h2 .dotaccent {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 48px;
    margin-left: 4px;
    vertical-align: middle;
    opacity: .6
}

.first .authorblock .authorcopy p {
    font-size: 21px;
    line-height: 1.55;
    color: #ffffffe0;
    margin: 0
}

.first .authorblock .authorcopy p strong {
    color: #fff;
    font-weight: 900
}

.first .authorblock .authorcopy .authorlink {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 32px;
    background: #fff;
    color: #1C2E75;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase;
    align-self: flex-start;
    box-shadow: 0 7px 25px 1px #1c2e7514;
    transition: background .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.first .authorblock .authorcopy .authorlink:hover {
    background: #FF3651;
    color: #fff
}

.first .popularblock {
    padding: 32px
}

.first .popularblock .popularheader {
    margin-bottom: 32px
}

.first .popularblock .popularheader h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #1C2E75;
    margin: 0 0 8px;
    text-align: center
}

.first .popularblock .popularheader .dotaccent {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #FF3651;
    border-radius: 48px;
    margin-left: 4px;
    vertical-align: middle
}

.first .popularblock .popularheader p {
    font-size: 21px;
    line-height: 1.55;
    color: #444;
    text-align: left;
    margin: 0
}

.first .popularblock .popularlist {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.first .popularblock .popularlist .popularitem {
    display: grid;
    grid-template-columns: 72px 1fr 280px;
    gap: 16px;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 1px 6px 1px #1c2e7512;
    border-top: 3px solid #F0F0F0;
    transition: border-color .5s ease-in-out, box-shadow .5s ease-in-out
}

.first .popularblock .popularlist .popularitem:hover {
    border-color: #FF3651;
    box-shadow: 0 7px 25px 1px #ff365114
}

.first .popularblock .popularlist .popularitem .itemnum {
    font-size: 54px;
    line-height: 1.2;
    color: #F0F0F0;
    font-weight: 900;
    text-align: center;
    user-select: none
}

.first .popularblock .popularlist .popularitem .itemcopy h4 {
    font-size: 21px;
    line-height: 1.55;
    color: #1C2E75;
    margin: 0 0 4px
}

.first .popularblock .popularlist .popularitem .itemcopy p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin: 0
}

.first .popularblock .popularlist .popularitem .itemimg {
    border-radius: 7px;
    overflow: hidden;
    height: 80px
}

.first .popularblock .popularlist .popularitem .itemimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.first .habitblock {
    padding: 32px;
    background: #F0F0F0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start
}

.first .habitblock .habitimage {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 7px 25px 1px #1c2e7514;
    position: relative
}

.first .habitblock .habitimage img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
    display: block
}

.first .habitblock .habitimage .imagecaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(0deg, #1c2e75b3 0%, transparent 100%);
    color: #fff;
    font-size: 14px;
    line-height: 1.55;
    border-radius: 0 0 12px 12px
}

.first .habitblock .habitcopy {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.first .habitblock .habitcopy h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #1C2E75;
    margin: 0;
    text-align: center
}

.first .habitblock .habitcopy h2 .dotaccent {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #FF3651;
    border-radius: 48px;
    margin-left: 4px;
    vertical-align: middle
}

.first .habitblock .habitcopy .leadlabel {
    font-size: 14px;
    font-weight: 700;
    color: #FF3651;
    letter-spacing: .12em;
    text-transform: uppercase
}

.first .habitblock .habitcopy p {
    font-size: 21px;
    line-height: 1.55;
    color: #333;
    margin: 0
}

.first .habitblock .habitcopy p strong {
    color: #1C2E75
}

.first .habitblock .habitcopy .habittips {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    list-style: none;
    margin: 0
}

.first .habitblock .habitcopy .habittips li {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    padding: 8px 16px;
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 1px 6px 1px #1c2e7512;
    display: flex;
    align-items: center;
    gap: 8px
}

.first .habitblock .habitcopy .habittips li .tipmark {
    width: 6px;
    height: 6px;
    background: #FF3651;
    border-radius: 48px;
    flex-shrink: 0
}

.first .faqblock {
    padding: 32px
}

.first .faqblock h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #1C2E75;
    margin: 0 0 32px;
    text-align: center
}

.first .faqblock h2 .dotaccent {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #FF3651;
    border-radius: 48px;
    margin-left: 4px;
    vertical-align: middle
}

.first .faqblock .faqlist {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 860px;
    margin: 0 auto
}

.first .faqblock .faqlist details {
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 1px 6px 1px #1c2e7512;
    overflow: hidden;
    transition: box-shadow .5s ease-in-out
}

.first .faqblock .faqlist details:hover {
    box-shadow: 0 7px 25px 1px #1c2e7514
}

.first .faqblock .faqlist details summary {
    font-size: 21px;
    line-height: 1.55;
    color: #1C2E75;
    font-weight: 700;
    padding: 16px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.first .faqblock .faqlist details summary::-webkit-details-marker {
    display: none
}

.first .faqblock .faqlist details summary .faqarrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .45s ease-in-out
}

.first .faqblock .faqlist details[open] summary .faqarrow {
    transform: rotate(180deg)
}

.first .faqblock .faqlist details .faqanswer {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    padding: 0 16px 16px
}

@keyframes revealrotate {
    from {
        opacity: 0;
        transform: rotate(-3deg) translateY(16px)
    }

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

.first .titleblock .leftanchor {
    animation: revealrotate .65s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
}

.first .titleblock .rightimage {
    animation: revealrotate .65s .15s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
}

@media (max-width: 1200px) {
    .first .thematicmap .themegrid {
        grid-template-columns: repeat(2, 1fr)
    }

    .first .postlisting .postsrow {
        grid-template-columns: 1fr 1fr
    }

    .first .postlisting .postsrow .postcard.featured {
        grid-column: 1 / -1
    }
}

@media (max-width: 900px) {
    .first .titleblock {
        grid-template-columns: 1fr;
        padding: 32px 16px 16px
    }

    .first .titleblock .leftanchor h1 {
        font-size: 54px
    }

    .first .titleblock .rightimage img {
        height: 280px
    }

    .first .depthblock {
        grid-template-columns: 1fr;
        padding: 32px 16px
    }

    .first .authorblock {
        grid-template-columns: 1fr;
        padding: 32px 16px
    }

    .first .habitblock {
        grid-template-columns: 1fr;
        padding: 32px 16px
    }

    .first .popularblock .popularlist .popularitem {
        grid-template-columns: 48px 1fr
    }

    .first .popularblock .popularlist .popularitem .itemimg {
        display: none
    }

    .first .postlisting {
        padding: 32px 16px
    }

    .first .thematicmap {
        padding: 32px 16px
    }

    .first .faqblock {
        padding: 32px 16px
    }

    .first .popularblock {
        padding: 32px 16px
    }

    .first .divider-accent,
    .first .divider-stripe,
    .first .divider-plain {
        margin: 0 16px;
        width: calc(100% - 32px)
    }
}

@media (max-width: 600px) {
    .first .titleblock .leftanchor h1 {
        font-size: 38px
    }

    .first .postlisting .postsrow {
        grid-template-columns: 1fr
    }

    .first .thematicmap .themegrid {
        grid-template-columns: 1fr
    }

    .first .depthblock .depthvisual .ringswrap {
        flex-wrap: wrap
    }

    .first .popularblock .popularlist .popularitem .itemnum {
        font-size: 38px
    }

    .first .postlisting .listingheader {
        flex-wrap: wrap
    }
}

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

.blog .diamond-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px
}

.blog .diamond-divider span {
    width: 6px;
    height: 6px;
    background: #FF3651;
    transform: rotate(45deg);
    display: inline-block;
    opacity: .4
}

.blog .diamond-divider span:nth-child(3),
.blog .diamond-divider span:nth-child(5) {
    opacity: .7
}

.blog .diamond-divider span:nth-child(4) {
    opacity: 1;
    width: 8px;
    height: 8px;
    background: #1C2E75
}

.blog .diamond-divider-full {
    display: flex;
    align-items: center;
    padding: 8px 32px;
    gap: 6px;
    overflow: hidden
}

.blog .diamond-divider-full span {
    width: 5px;
    height: 5px;
    background: #1C2E75;
    transform: rotate(45deg);
    display: inline-block;
    opacity: .18;
    flex-shrink: 0
}

.blog .titleblock {
    position: relative;
    padding: 54px 32px;
    background: linear-gradient(135deg, #eef0f8 0%, #fff8f8 60%, #fff 100%);
    overflow: hidden
}

.blog .titleblock .corner-line-tl {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    border-top: 1.5px solid #1C2E75;
    border-left: 1.5px solid #1C2E75;
    opacity: .3;
    pointer-events: none
}

.blog .titleblock .corner-line-br {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-bottom: 1.5px solid #FF3651;
    border-right: 1.5px solid #FF3651;
    opacity: .3;
    pointer-events: none
}

.blog .titleblock .grid-pulse {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(#1c2e750f 1px, transparent 1px), linear-gradient(90deg, #1c2e750f 1px, transparent 1px);
    background-size: 48px 48px;
    animation: gridpulse 4s ease-in-out infinite;
    pointer-events: none
}

@keyframes gridpulse {

    0%,
    100% {
        opacity: .5
    }

    50% {
        opacity: 1
    }
}

.blog .titleblock .titlelabel {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .14em;
    color: #FF3651;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative
}

.blog .titleblock h1 {
    font-size: 54px;
    line-height: 1.2;
    font-weight: 900;
    color: #1C2E75;
    text-align: center;
    margin: 0 0 16px;
    position: relative
}

.blog .titleblock h1 .accent {
    color: #FF3651
}

.blog .titleblock .subtitle {
    font-size: 21px;
    line-height: 1.55;
    color: #2a2a3a;
    text-align: left;
    max-width: 640px;
    position: relative
}

.blog .titleblock .titledot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #FF3651;
    border-radius: 48px;
    margin-left: 6px;
    vertical-align: middle
}

.blog .titleblock .titleimage {
    width: 100%;
    max-width: 480px;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    filter: saturate(0.55) contrast(1.05);
    display: block;
    position: relative
}

.blog .titleblock .titlerow {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    position: relative
}

.blog .titleblock .titletextcol {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
}

.blog .titleblock .titleimagecol {
    flex: 0 0 auto
}

.blog .postsarea {
    padding: 32px;
    background: #fff
}

.blog .postsarea .postsheading {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    color: #1C2E75;
    margin: 0 0 8px;
    text-align: center
}

.blog .postsarea .postsheading .accent {
    color: #FF3651
}

.blog .postsarea .postsdesc {
    font-size: 14px;
    line-height: 1.55;
    color: #3a3a4a;
    text-align: center;
    margin: 0 0 32px;
    letter-spacing: .04em
}

.blog .postsarea .cardgrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px
}

.blog .postsarea .postcard {
    background: #F0F0F0;
    border-radius: 12px;
    box-shadow: 0 7px 25px 1px #ff365114;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.blog .postsarea .postcard:hover {
    box-shadow: 0 10px 36px 1px #ff365121;
    transform: translateY(-4px)
}

.blog .postsarea .postcard .cardimgwrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    flex-shrink: 0
}

.blog .postsarea .postcard .cardimgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .6s ease-in-out
}

.blog .postsarea .postcard:hover .cardimgwrap img {
    transform: scale(1.04)
}

.blog .postsarea .postcard .cardbody {
    padding: 16px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1
}

.blog .postsarea .postcard .cardauthor {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    color: #FF3651;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px
}

.blog .postsarea .postcard .cardauthor .authordot {
    width: 7px;
    height: 7px;
    background: #1C2E75;
    border-radius: 48px;
    display: inline-block;
    position: relative
}

.blog .postsarea .postcard .cardauthor .authordot::after {
    content: "";
    position: absolute;
    top: -2px;
    right: -2px;
    width: 4px;
    height: 4px;
    background: #FF3651;
    border-radius: 48px
}

.blog .postsarea .postcard h2 {
    font-size: 21px;
    line-height: 1.2;
    font-weight: 800;
    color: #1C2E75;
    margin: 0
}

.blog .postsarea .postcard .carddesc {
    font-size: 14px;
    line-height: 1.55;
    color: #2a2a3a;
    margin: 0;
    flex: 1
}

.blog .postsarea .postcard .cardlink {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 32px;
    background: #1C2E75;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .06em;
    border-radius: 32px;
    text-decoration: none;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    transition: color .5s ease-in-out
}

.blog .postsarea .postcard .cardlink::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 0;
    height: 200%;
    background: #FF3651;
    transform: skewX(-20deg);
    transition: width .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0
}

.blog .postsarea .postcard .cardlink:hover::before {
    width: 200%
}

.blog .postsarea .postcard .cardlink span {
    position: relative;
    z-index: 1
}

.blog .postsarea .postcard .cardlink:focus {
    outline: 2px solid #FF3651;
    outline-offset: 3px
}

.blog .aboutstrip {
    background: #F0F0F0;
    padding: 54px 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    position: relative
}

.blog .aboutstrip .dashedbox {
    border: 2px dashed #1C2E75;
    border-radius: 12px;
    padding: 32px;
    flex: 1;
    position: relative;
    background: #fff
}

.blog .aboutstrip .dashedbox .stripheading {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    color: #1C2E75;
    margin: 0 0 16px;
    text-align: center
}

.blog .aboutstrip .dashedbox .stripheading .accent {
    color: #FF3651
}

.blog .aboutstrip .dashedbox .stripbody {
    font-size: 14px;
    line-height: 1.8;
    color: #1a1e2e;
    margin: 0 0 16px
}

.blog .aboutstrip .dashedbox .stripbody strong {
    color: #FF3651
}

.blog .aboutstrip .dashedbox .striplabel {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    color: #1C2E75;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block
}

.blog .aboutstrip .stripside {
    flex: 0 0 260px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start
}

.blog .aboutstrip .stripside .sidecard {
    background: #1C2E75;
    border-radius: 12px;
    padding: 16px;
    width: 100%;
    color: #fff
}

.blog .aboutstrip .stripside .sidecard .sideicon {
    width: 32px;
    height: 32px;
    background: #FF3651;
    border-radius: 7px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center
}

.blog .aboutstrip .stripside .sidecard h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 4px;
    color: #fff;
    letter-spacing: .05em
}

.blog .aboutstrip .stripside .sidecard p {
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
    color: #c8d0e8
}

.blog .comparisonblock {
    padding: 54px 32px;
    background: #fff;
    position: relative
}

.blog .comparisonblock .compheading {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    color: #1C2E75;
    text-align: center;
    margin: 0 0 8px
}

.blog .comparisonblock .compdesc {
    font-size: 14px;
    line-height: 1.55;
    color: #3a3a4a;
    text-align: left;
    margin: 0 0 32px
}

.blog .comparisonblock .comppair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch
}

.blog .comparisonblock .compoption {
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 1px 6px 1px #1c2e7512
}

.blog .comparisonblock .compoption.optA {
    background: #F0F0F0;
    border-top: 4px solid #1C2E75
}

.blog .comparisonblock .compoption.optB {
    background: #1C2E75;
    border-top: 4px solid #FF3651
}

.blog .comparisonblock .compoption .opttag {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase
}

.blog .comparisonblock .compoption.optA .opttag {
    color: #1C2E75
}

.blog .comparisonblock .compoption.optB .opttag {
    color: #FF3651
}

.blog .comparisonblock .compoption h3 {
    font-size: 21px;
    line-height: 1.2;
    font-weight: 800;
    margin: 0
}

.blog .comparisonblock .compoption.optA h3 {
    color: #1C2E75
}

.blog .comparisonblock .compoption.optB h3 {
    color: #fff
}

.blog .comparisonblock .compoption ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.blog .comparisonblock .compoption ul li {
    font-size: 14px;
    line-height: 1.55;
    padding-left: 16px;
    position: relative
}

.blog .comparisonblock .compoption.optA ul li {
    color: #2a2a3a
}

.blog .comparisonblock .compoption.optB ul li {
    color: #c8d0e8
}

.blog .comparisonblock .compoption ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    transform: rotate(45deg);
    flex-shrink: 0
}

.blog .comparisonblock .compoption.optA ul li::before {
    background: #FF3651
}

.blog .comparisonblock .compoption.optB ul li::before {
    background: #FF3651
}

.blog .comparisonblock .compoption .optcta {
    display: inline-block;
    padding: 8px 32px;
    border-radius: 32px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .06em;
    text-decoration: none;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    transition: color .5s ease-in-out
}

.blog .comparisonblock .compoption.optA .optcta {
    background: #1C2E75;
    color: #fff
}

.blog .comparisonblock .compoption.optB .optcta {
    background: #FF3651;
    color: #fff
}

.blog .comparisonblock .compoption .optcta::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 0;
    height: 200%;
    background: #FF3651;
    transform: skewX(-20deg);
    transition: width .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0
}

.blog .comparisonblock .compoption.optB .optcta::before {
    background: #fff
}

.blog .comparisonblock .compoption .optcta:hover::before {
    width: 200%
}

.blog .comparisonblock .compoption.optB .optcta:hover {
    color: #1C2E75
}

.blog .comparisonblock .compoption .optcta span {
    position: relative;
    z-index: 1
}

.blog .comparisonblock .compoption .optcta:focus {
    outline: 2px solid #FF3651;
    outline-offset: 3px
}

.blog .tipsstrip {
    background: #F0F0F0;
    padding: 54px 32px;
    position: relative
}

.blog .tipsstrip .tipsrow {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start
}

.blog .tipsstrip .tipsmain {
    flex: 1
}

.blog .tipsstrip .tipsmain .tipsheading {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    color: #1C2E75;
    margin: 0 0 16px;
    text-align: center
}

.blog .tipsstrip .tipsmain .tipsheading .accent {
    color: #FF3651
}

.blog .tipsstrip .tipsmain .tipsbody {
    font-size: 14px;
    line-height: 1.8;
    color: #2a2a3a;
    margin: 0 0 16px
}

.blog .tipsstrip .tipsmain .tipsbody strong {
    color: #1C2E75
}

.blog .tipsstrip .tipsmain .tipslist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.blog .tipsstrip .tipsmain .tipslist li {
    font-size: 14px;
    line-height: 1.55;
    color: #2a2a3a;
    padding: 8px 16px;
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 1px 6px 1px #ff365112;
    transition: box-shadow .5s ease-in-out
}

.blog .tipsstrip .tipsmain .tipslist li:hover {
    box-shadow: 0 7px 25px 1px #ff36511a
}

.blog .tipsstrip .tipsmain .tipslist li strong {
    color: #FF3651;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: text-decoration-thickness .5s ease-in-out, color .45s ease-in-out
}

.blog .tipsstrip .tipsmain .tipslist li:hover strong {
    text-decoration-thickness: 4px;
    color: #1C2E75
}

.blog .tipsstrip .tipsaside {
    flex: 0 0 240px;
    background: #fff;
    border-radius: 12px;
    padding: 32px 16px;
    box-shadow: 0 7px 25px 1px #1c2e7514;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center
}

.blog .tipsstrip .tipsaside .asidelabel {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    color: #FF3651;
    text-transform: uppercase
}

.blog .tipsstrip .tipsaside .asidestat {
    font-size: 54px;
    font-weight: 900;
    color: #1C2E75;
    line-height: 1.2;
    text-align: center
}

.blog .tipsstrip .tipsaside .asidestatdesc {
    font-size: 14px;
    line-height: 1.55;
    color: #3a3a4a;
    text-align: center
}

.blog .tipsstrip .tipsaside .asidelink {
    display: inline-block;
    padding: 8px 32px;
    background: #FF3651;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .06em;
    border-radius: 32px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color .5s ease-in-out
}

.blog .tipsstrip .tipsaside .asidelink::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 0;
    height: 200%;
    background: #1C2E75;
    transform: skewX(-20deg);
    transition: width .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0
}

.blog .tipsstrip .tipsaside .asidelink:hover::before {
    width: 200%
}

.blog .tipsstrip .tipsaside .asidelink span {
    position: relative;
    z-index: 1
}

.blog .tipsstrip .tipsaside .asidelink:focus {
    outline: 2px solid #1C2E75;
    outline-offset: 3px
}

@media (max-width: 900px) {
    .blog .titleblock h1 {
        font-size: 38px
    }

    .blog .titleblock .titlerow {
        flex-direction: column
    }

    .blog .titleblock .titleimagecol {
        width: 100%
    }

    .blog .titleblock .titleimage {
        max-width: 100%;
        height: 220px
    }

    .blog .postsarea .cardgrid {
        grid-template-columns: 1fr
    }

    .blog .aboutstrip {
        flex-direction: column
    }

    .blog .aboutstrip .stripside {
        flex: none;
        width: 100%
    }

    .blog .comparisonblock .comppair {
        grid-template-columns: 1fr
    }

    .blog .tipsstrip .tipsrow {
        flex-direction: column
    }

    .blog .tipsstrip .tipsaside {
        flex: none;
        width: 100%
    }
}

@media (max-width: 600px) {
    .blog .titleblock {
        padding: 32px 16px
    }

    .blog .titleblock h1 {
        font-size: 38px
    }

    .blog .postsarea {
        padding: 32px 16px
    }

    .blog .postsarea .cardgrid {
        gap: 16px
    }

    .blog .aboutstrip {
        padding: 32px 16px
    }

    .blog .comparisonblock {
        padding: 32px 16px
    }

    .blog .tipsstrip {
        padding: 32px 16px
    }

    .blog .postsarea .postcard .cardbody {
        padding: 16px
    }
}

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

.successPage .confirmationWrapper {
    max-width: 1500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px
}

.successPage .iconRing {
    width: 88px;
    height: 88px;
    border-radius: 48px;
    background: #F0F0F0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 7px 25px 1px #1c2e7514;
    flex-shrink: 0
}

.successPage .iconRing svg {
    display: block
}

.successPage .messageBlock {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    max-width: 560px
}

.successPage .messageBlock .statusLabel {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .12em;
    color: #FF3651;
    text-transform: uppercase
}

.successPage .messageBlock .confirmationHeading {
    font-size: 38px;
    line-height: 1.2;
    color: #1C2E75;
    margin: 0
}

.successPage .messageBlock .confirmationHeading .accentWord {
    color: #FF3651;
    font-weight: 800
}

.successPage .messageBlock .confirmationBody {
    font-size: 21px;
    line-height: 1.55;
    color: #2a2a2a;
    margin: 0
}

.successPage .dividerLine {
    width: 64px;
    height: 2px;
    background: linear-gradient(105deg, #1C2E75, #FF3651);
    border-radius: 7px
}

.successPage .returnLink {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    color: #1C2E75;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 32px;
    border: 2px solid #1C2E75;
    background: #fff;
    transition: color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 1px 6px 1px #1c2e7512;
    position: relative;
    overflow: hidden
}

.successPage .returnLink::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1C2E75 0%, #FF3651 100%);
    opacity: 0;
    transition: opacity .55s ease-in-out;
    border-radius: 30px
}

.successPage .returnLink:hover::before {
    opacity: 1
}

.successPage .returnLink:hover {
    color: #fff;
    border-color: transparent
}

.successPage .returnLink span {
    position: relative;
    z-index: 1
}

.successPage .returnLink:focus-visible {
    outline: 3px solid #FF3651;
    outline-offset: 4px
}

@media (max-width: 600px) {
    .successPage .messageBlock .confirmationHeading {
        font-size: 21px
    }

    .successPage .messageBlock .confirmationBody {
        font-size: 14px
    }

    .successPage .iconRing {
        width: 72px;
        height: 72px
    }
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}
