html {
    box-sizing: border-box
}

*,
::before,
::after {
    box-sizing: inherit
}

body {
    margin: 0
}

.sitehead {
    background: linear-gradient(135deg, #F6F1EC 0%, #D8CC8D22 60%, #F6F1EC 100%);
    border-bottom: 1px solid #D8CC8D;
    box-shadow: -1px 4px 20px 0 #c5733517;
    position: relative
}

.sitehead-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    align-items: center;
    gap: 0;
    padding: 32px
}

.divline {
    width: 1px;
    align-self: stretch;
    background: linear-gradient(to bottom, transparent, #C57335 30%, #D8CC8D 70%, transparent);
    margin: 0 32px
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none
}

.brandcard {
    background: #fff;
    border-radius: 14px;
    box-shadow: -1px 2px 4px 0 #c5733514 -1px 4px 20px 0 #c5733517;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D8CC8D;
    flex-shrink: 0
}

.brandcard img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block
}

.brandname {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1;
    color: #2a1a08;
    letter-spacing: 0
}

.brandtag {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 14px;
    line-height: 1.55;
    color: #C57335;
    display: block;
    font-weight: 400
}

.headnav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-left: 32px
}

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

.navitem {
    display: flex;
    align-items: center
}

.navlink {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 16px;
    line-height: 1.55;
    color: #2a1a08;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 7px;
    position: relative;
    transition: color .1s ease-out, background-color .12s ease-out;
    font-weight: 400
}

.navlink::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 16px;
    width: 0;
    height: 1px;
    background: #C57335;
    transition: width .1s ease-out
}

.navlink:hover {
    color: #C57335;
    background: #c573350f
}

.navlink:hover::after {
    width: calc(100% - 32px)
}

.navlink:focus-visible {
    outline: 2px solid #C57335;
    outline-offset: 3px;
    border-radius: 7px
}

.navlink svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    stroke: #C57335;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.navlink.active {
    color: #C57335;
    background: #c5733514;
    font-weight: 700
}

.navlink.active::after {
    width: calc(100% - 32px)
}

.siteftr {
    background: linear-gradient(180deg, #F6F1EC 0%, #ede7dd 100%);
    border-top: 1px solid #D8CC8D;
    box-shadow: -1px -4px 20px 0 #c5733517 -1px -8px 40px 0 #c573351c
}

.ftrinner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 32px 32px
}

.ftrgrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px
}

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

.ftrhead {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
    color: #2a1a08;
    text-transform: uppercase;
    letter-spacing: .12em;
    padding-bottom: 8px;
    border-bottom: 1px solid #D8CC8D
}

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

.ftrlinks a {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 16px;
    line-height: 1.55;
    color: #5a3a1a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: color .08s linear
}

.ftrlinks a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: #C57335;
    transition: width .1s ease-out
}

.ftrlinks a:hover {
    color: #C57335
}

.ftrlinks a:hover::after {
    width: 100%
}

.ftrlinks a:focus-visible {
    outline: 2px solid #C57335;
    outline-offset: 2px
}

.ftrtrust {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.trustitem {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 14px;
    line-height: 1.55;
    color: #7a5a38;
    display: flex;
    align-items: flex-start;
    gap: 8px
}

.trustitem svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 3px;
    stroke: #C57335;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ftrcontact {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 16px;
    line-height: 1.55;
    color: #5a3a1a
}

.ftrcontact a {
    color: #C57335;
    text-decoration: none;
    transition: color .08s linear
}

.ftrcontact a:hover {
    color: #2a1a08
}

.ftrcontact a:focus-visible {
    outline: 2px solid #C57335;
    outline-offset: 2px
}

.ftrbase {
    border-top: 1px solid #D8CC8D;
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px
}

.ftrlogocard {
    background: #fff;
    border-radius: 14px;
    box-shadow: -1px 2px 4px 0 #c5733514 -1px 4px 20px 0 #c5733517;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D8CC8D
}

.ftrlogocard img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    display: block
}

.copyright {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 14px;
    line-height: 1.55;
    color: #7a5a38;
    text-align: center
}

.consentbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1200;
    background: #F6F1EC;
    border-bottom: 1px solid #D8CC8D;
    box-shadow: -1px 8px 40px 0 #c573351c
}

.consentinner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px
}

.consenttext {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 14px;
    line-height: 1.55;
    color: #2a1a08;
    flex: 1;
    min-width: 200px
}

.consentbtns {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.cbtn {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 14px;
    line-height: 1.55;
    padding: 8px 16px;
    border-radius: 7px;
    cursor: pointer;
    border: 1px solid #C57335;
    background: transparent;
    color: #C57335;
    transition: background-color .1s ease-out, color .1s ease-out;
    min-height: 44px;
    position: relative;
    overflow: hidden
}

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

.cbtn:hover::before {
    height: 100%
}

.cbtn:hover {
    color: #fff
}

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

.cbtn:focus-visible {
    outline: 2px solid #C57335;
    outline-offset: 3px
}

.cbtn:active {
    box-shadow: inset -1px 2px 4px 0 #c5733514
}

.csettingslink {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 14px;
    line-height: 1.55;
    color: #7a5a38;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    padding: 8px;
    min-height: 44px;
    transition: color .08s linear
}

.csettingslink:hover {
    color: #C57335
}

.csettingslink:focus-visible {
    outline: 2px solid #C57335;
    outline-offset: 2px
}

.ctoggles {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 8px
}

.ctoggleitem {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 14px;
    line-height: 1.55;
    color: #2a1a08
}

.ctoggleitem input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #C57335;
    cursor: pointer
}

.ctoggleitem input[type="checkbox"]:focus-visible {
    outline: 2px solid #C57335;
    outline-offset: 2px
}

.ctoggleitem.always {
    color: #7a5a38
}

@media (max-width: 1024px) {
    .sitehead-inner {
        grid-template-columns: 1fr 1px 1fr;
        padding: 32px 16px
    }

    .headnav {
        padding-left: 16px
    }

    .divline {
        margin: 0 16px
    }

    .ftrgrid {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }

    .ftrinner {
        padding: 64px 16px 32px
    }
}

@media (max-width: 768px) {
    .sitehead-inner {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 32px 16px
    }

    .divline {
        display: none
    }

    .headnav {
        padding-left: 0
    }

    .brandname {
        font-size: 50px
    }

    .ftrgrid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .consentinner {
        padding: 16px
    }
}

@media (max-width: 320px) {
    .brandname {
        font-size: 50px
    }

    .navlink {
        padding: 8px;
        font-size: 14px
    }

    .sitehead-inner {
        padding: 16px 8px
    }
}

@media (min-width: 1440px) {
    .sitehead-inner {
        padding: 32px 64px
    }

    .ftrinner {
        padding: 64px 64px 32px
    }
}

.zvg-policy-text {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 32px;
    color: #2c2218;
    background: #fff
}

.zvg-policy-text h1 {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #C57335;
    margin-bottom: 32px;
    margin-top: 0;
    padding-bottom: 16px;
    border-bottom: 2px solid #D8CC8D
}

.zvg-policy-text h2 {
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #C57335;
    margin-top: 64px;
    margin-bottom: 16px
}

.zvg-policy-text h3 {
    font-size: 16px;
    line-height: 1.55;
    color: #2c2218;
    margin-top: 32px;
    margin-bottom: 8px;
    border-left: 3px solid #C57335;
    padding-left: 16px;
    border-radius: 2px
}

.zvg-policy-text h4 {
    font-size: 14px;
    line-height: 1.55;
    color: #5a3e28;
    margin-top: 32px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.zvg-policy-text h5 {
    font-size: 14px;
    line-height: 1.55;
    color: #5a3e28;
    margin-top: 16px;
    margin-bottom: 8px
}

.zvg-policy-text h6 {
    font-size: 14px;
    line-height: 2;
    color: #7a5c3c;
    margin-top: 16px;
    margin-bottom: 4px
}

.zvg-policy-text p {
    font-size: 16px;
    line-height: 2;
    color: #2c2218;
    margin-top: 0;
    margin-bottom: 16px;
    max-width: 72ch
}

.zvg-policy-text ul {
    margin: 0 0 16px;
    padding-left: 32px;
    list-style: none
}

.zvg-policy-text ol {
    margin: 0 0 16px;
    padding-left: 32px;
    list-style: none;
    counter-reset: policy-counter
}

.zvg-policy-text ul li {
    font-size: 16px;
    line-height: 2;
    color: #2c2218;
    margin-bottom: 8px;
    position: relative;
    max-width: 72ch
}

.zvg-policy-text ul li::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 14px;
    width: 6px;
    height: 6px;
    background: #C57335;
    border-radius: 2px;
    opacity: .7
}

.zvg-policy-text ol li {
    font-size: 16px;
    line-height: 2;
    color: #2c2218;
    margin-bottom: 8px;
    position: relative;
    max-width: 72ch;
    counter-increment: policy-counter
}

.zvg-policy-text ol li::before {
    content: counter(policy-counter) ".";
    position: absolute;
    left: -28px;
    top: 0;
    font-size: 14px;
    color: #C57335;
    font-weight: 600;
    line-height: 2
}

.zvg-policy-text ul ul,
.zvg-policy-text ol ol,
.zvg-policy-text ul ol,
.zvg-policy-text ol ul {
    margin-top: 8px;
    margin-bottom: 0
}

.zvg-policy-text em,
.zvg-policy-text i {
    color: #5a3e28;
    font-style: italic
}

.zvg-policy-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 14px;
    line-height: 1.55;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: -1px 4px 20px 0 #c5733517
}

.zvg-policy-text thead {
    background: #F6F1EC
}

.zvg-policy-text thead tr {
    border-bottom: 2px solid #D8CC8D
}

.zvg-policy-text tbody tr {
    border-bottom: 1px solid #d8cc8d66;
    transition: background-color .1s ease-out
}

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

.zvg-policy-text tbody tr:hover {
    background: #f6f1ec99
}

.zvg-policy-text th {
    padding: 16px;
    text-align: left;
    font-size: 14px;
    line-height: 1.55;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #C57335;
    font-weight: 600
}

.zvg-policy-text td {
    padding: 16px;
    font-size: 14px;
    line-height: 1.55;
    color: #2c2218;
    vertical-align: top
}

.zvg-policy-text hr {
    border: none;
    border-top: 1px solid #d8cc8d99;
    margin: 64px 0
}

.zvg-policy-text div {
    font-size: 16px;
    line-height: 1.55
}

@media (max-width: 768px) {
    .zvg-policy-text {
        padding: 32px 16px
    }

    .zvg-policy-text h1 {
        font-size: clamp(32px, 8vw, 50px)
    }

    .zvg-policy-text h2 {
        margin-top: 32px
    }

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

    .zvg-policy-text p,
    .zvg-policy-text ul li,
    .zvg-policy-text ol li {
        max-width: 100%
    }
}

@media (max-width: 320px) {
    .zvg-policy-text {
        padding: 16px 8px
    }

    .zvg-policy-text h1 {
        font-size: 32px
    }
}

@media (min-width: 1440px) {
    .zvg-policy-text {
        padding: 96px 64px
    }
}

.bdtl {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px
}

.bdtl .arthead {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    padding: 96px 0 64px;
    align-items: start
}

.bdtl .arthead-img {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: -1px 4px 20px 0 #c5733517
}

.bdtl .arthead-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    border-radius: 14px;
    filter: saturate(0.7) brightness(0.92);
    transition: filter .12s ease-out
}

.bdtl .arthead-img:hover img {
    filter: saturate(1) brightness(1)
}

.bdtl .arthead-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #c573352e;
    border-radius: 14px;
    transition: opacity .1s ease-out;
    z-index: 1;
    pointer-events: none
}

.bdtl .arthead-img:hover::before {
    opacity: 0
}

.bdtl .geodeco {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 64px;
    height: 64px;
    border: 2px solid #c573352e;
    border-radius: 2px;
    z-index: 0;
    pointer-events: none
}

.bdtl .geodeco2 {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: #d8cc8d38;
    border-radius: 7px;
    z-index: 0;
    pointer-events: none
}

.bdtl .arthead-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 32px
}

.bdtl .tagrow {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap
}

.bdtl .atag {
    font-size: 14px;
    line-height: 1.55;
    color: #C57335;
    background: #c5733517;
    border-radius: 26px;
    padding: 4px 16px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase
}

.bdtl .ctag {
    font-size: 14px;
    line-height: 1.55;
    color: #5a4a2e;
    background: #d8cc8d47;
    border-radius: 26px;
    padding: 4px 16px
}

.bdtl .arthead-h1 {
    font-size: 50px;
    line-height: 1.1;
    color: #2a1f10;
    font-weight: 800;
    margin: 0
}

.bdtl .artsub {
    font-size: 16px;
    line-height: 1.55;
    color: #5a4a2e;
    margin: 0;
    max-width: 560px
}

.bdtl .metarow {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap
}

.bdtl .metaitem {
    font-size: 14px;
    line-height: 1.55;
    color: #8a7055;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.bdtl .metadot {
    width: 6px;
    height: 6px;
    border-radius: 42px;
    background: #C57335;
    display: inline-block;
    flex-shrink: 0
}

.bdtl .likerow {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 8px
}

.bdtl .likebtn {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: #F6F1EC;
    border: 1.5px solid #c5733538;
    border-radius: 7px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #5a4a2e;
    position: relative;
    overflow: hidden;
    transition: color .1s ease-out, border-color .1s ease-out
}

.bdtl .likebtn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #c573351f;
    transition: height .1s ease-out;
    z-index: 0
}

.bdtl .likebtn:hover::after {
    height: 100%
}

.bdtl .likebtn:hover {
    border-color: #C57335;
    color: #C57335
}

.bdtl .likebtn:active {
    box-shadow: inset -1px 2px 4px 0 #c5733526
}

.bdtl .likebtn span {
    position: relative;
    z-index: 1
}

.bdtl .likeheart {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center
}

.bdtl .divider-thick {
    width: 100%;
    height: 4px;
    background: #C57335;
    border-radius: 2px;
    margin: 0 0 64px
}

.bdtl .artbody {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 64px;
    align-items: start;
    padding-bottom: 96px
}

.bdtl .prose {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.bdtl .prose p {
    font-size: 16px;
    line-height: 1.55;
    color: #2a1f10;
    margin: 0
}

.bdtl .prose h2 {
    font-size: 50px;
    line-height: 1.1;
    color: #2a1f10;
    font-weight: 800;
    margin: 32px 0 0
}

.bdtl .prose h3 {
    font-size: 16px;
    line-height: 1.55;
    color: #C57335;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin: 16px 0 0
}

.bdtl .prose strong {
    color: #C57335;
    font-weight: 700
}

.bdtl .prose ol {
    margin: 0;
    padding-left: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.bdtl .prose li {
    font-size: 16px;
    line-height: 1.55;
    color: #2a1f10
}

.bdtl .prose table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: -1px 2px 4px 0 #c5733514
}

.bdtl .prose caption {
    font-size: 14px;
    color: #8a7055;
    text-align: left;
    padding: 0 0 8px;
    line-height: 1.55
}

.bdtl .prose th {
    background: #c573351f;
    color: #2a1f10;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    padding: 8px 16px;
    letter-spacing: .03em
}

.bdtl .prose td {
    font-size: 14px;
    color: #2a1f10;
    padding: 8px 16px;
    border-bottom: 1px solid #d8cc8d59;
    line-height: 1.55
}

.bdtl .prose tr:last-child td {
    border-bottom: none
}

.bdtl .prose figure {
    margin: 16px 0;
    border-radius: 14px;
    overflow: hidden
}

.bdtl .prose figcaption {
    font-size: 14px;
    color: #8a7055;
    line-height: 1.55;
    padding: 8px 0 0;
    font-style: italic
}

.bdtl .sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: sticky;
    top: 32px
}

.bdtl .sidecard {
    border: 1.5px dashed #c5733561;
    border-radius: 14px;
    padding: 32px;
    background: #F6F1EC;
    box-shadow: -1px 4px 20px 0 #c5733517
}

.bdtl .sidecard-lbl {
    font-size: 14px;
    font-weight: 700;
    color: #C57335;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin: 0 0 16px
}

.bdtl .chartbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px
}

.bdtl .donut-wrap {
    position: relative;
    width: 120px;
    height: 120px
}

.bdtl .donut-wrap svg {
    animation: rotateDeco 14s linear infinite;
    transform-origin: center
}

@keyframes rotateDeco {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.bdtl .donut-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none
}

.bdtl .donut-val {
    font-size: 16px;
    font-weight: 800;
    color: #2a1f10;
    line-height: 1.1
}

.bdtl .donut-sub {
    font-size: 14px;
    color: #8a7055;
    line-height: 1.55
}

.bdtl .chartlegend {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%
}

.bdtl .legenditem {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #2a1f10;
    line-height: 1.55
}

.bdtl .legenddot {
    width: 8px;
    height: 8px;
    border-radius: 42px;
    flex-shrink: 0
}

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

.bdtl .navlist li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px
}

.bdtl .navlist .dot {
    width: 6px;
    height: 6px;
    border-radius: 42px;
    background: #C57335;
    margin-top: 8px;
    flex-shrink: 0
}

.bdtl .navlist a {
    font-size: 14px;
    color: #5a4a2e;
    text-decoration: none;
    line-height: 1.55;
    position: relative;
    transition: color .09s ease-out
}

.bdtl .navlist a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #C57335;
    transition: width .1s ease-out
}

.bdtl .navlist a:hover {
    color: #C57335
}

.bdtl .navlist a:hover::after {
    width: 100%
}

.bdtl .readlink {
    display: inline-block;
    font-size: 14px;
    color: #C57335;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding-bottom: 2px;
    transition: color .09s linear
}

.bdtl .readlink::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #C57335;
    transition: width .12s ease-out
}

.bdtl .readlink:hover::after {
    width: 100%
}

@media (max-width: 1024px) {
    .bdtl .arthead {
        grid-template-columns: 220px 1fr;
        gap: 32px;
        padding: 64px 0 32px
    }

    .bdtl .arthead-h1 {
        font-size: 50px
    }

    .bdtl .artbody {
        grid-template-columns: 1fr 220px;
        gap: 32px
    }
}

@media (max-width: 768px) {
    .bdtl .arthead {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 64px 0 32px
    }

    .bdtl .arthead-img img {
        height: 240px
    }

    .bdtl .arthead-right {
        padding-top: 0
    }

    .bdtl .arthead-h1 {
        font-size: 50px
    }

    .bdtl .artbody {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .bdtl .sidebar {
        position: static
    }
}

@media (max-width: 320px) {
    .bdtl .arthead-h1 {
        font-size: 50px
    }

    .bdtl .prose h2 {
        font-size: 50px
    }

    .bdtl .sidecard {
        padding: 16px
    }
}

.blg {
    max-width: 100%;
    overflow-x: hidden;
    background: #fff
}

.blg .pgwrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px
}

.blg .titlesplit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px
}

.blg .titleleft {
    background: #F6F1EC;
    padding: 96px 64px 96px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative
}

.blg .dotfield {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none
}

.blg .dotfield::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 42px;
    background: #C57335;
    opacity: .18;
    top: 18%;
    left: 12%;
    box-shadow: 80px 40px 0 #c573351f 160px 10px 0 #c5733517 40px 120px 0 #c5733526 200px 80px 0 #c5733514 120px 200px 0 #c573351c 60px 260px 0 #c5733512 240px 160px 0 #c5733521 20px 320px 0 #c5733517
}

.blg .pgmark {
    font-size: 14px;
    line-height: 1.55;
    color: #C57335;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 16px
}

.blg .pgh1 {
    font-size: clamp(50px, 5vw, 66px);
    line-height: 1.1;
    color: #2a1f14;
    margin: 0 0 16px
}

.blg .pgh1 span {
    color: #C57335
}

.blg .pgdesc {
    font-size: 16px;
    line-height: 1.55;
    color: #4a3728;
    max-width: 420px
}

.blg .titleright {
    position: relative;
    overflow: hidden;
    background: #2a1f14
}

.blg .titleright img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: .82;
    mask-image: linear-gradient(to top, #0000008c 0%, #000f 60%);
    -webkit-mask-image: linear-gradient(to top, #0000008c 0%, #000f 60%);
    transition: opacity .12s ease-out
}

.blg .titleright:hover img {
    opacity: 1
}

.blg .imgbadge {
    position: absolute;
    bottom: 32px;
    left: 32px;
    background: #c57335eb;
    color: #fff;
    font-size: 14px;
    line-height: 1.55;
    padding: 8px 16px;
    border-radius: 7px
}

.blg .revealwrap {
    animation: maskreveal .55s ease-out both
}

@keyframes maskreveal {
    from {
        clip-path: inset(50% 50% 50% 50%)
    }

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

.blg .postsgrid {
    padding: 64px 0;
    background: #fff
}

.blg .gridlabel {
    font-size: 14px;
    line-height: 1.55;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #C57335;
    margin-bottom: 32px
}

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

.blg .card {
    border-radius: 14px;
    background: #F6F1EC;
    box-shadow: -1px 2px 4px 0 #c5733514;
    transition: box-shadow .1s ease-out, transform .1s ease-out;
    display: flex;
    flex-direction: column;
    overflow: hidden
}

.blg .card:hover {
    box-shadow: -1px 8px 40px 0 #c573351c;
    transform: translateY(-4px);
    z-index: 2
}

.blg .card:active {
    box-shadow: inset -1px 2px 4px 0 #c5733521;
    transform: translateY(0)
}

.blg .cardimg {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background: #D8CC8D;
    transition: filter .12s ease-out;
    filter: saturate(0.7)
}

.blg .card:hover .cardimg {
    filter: saturate(1)
}

.blg .cardbody {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1
}

.blg .cardtag {
    font-size: 14px;
    line-height: 1.55;
    color: #C57335;
    text-transform: uppercase;
    letter-spacing: .09em
}

.blg .cardh2 {
    font-size: 16px;
    line-height: 1.55;
    color: #2a1f14;
    font-weight: 700;
    margin: 0
}

.blg .cardsub {
    font-size: 14px;
    line-height: 1.55;
    color: #6b4f38;
    margin: 0
}

.blg .cardtext {
    font-size: 14px;
    line-height: 1.55;
    color: #4a3728;
    margin: 0;
    flex: 1
}

.blg .cardmeta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-top: 8px
}

.blg .cardauthor {
    font-size: 14px;
    line-height: 1.55;
    color: #8a6a52
}

.blg .cardtime {
    font-size: 14px;
    line-height: 1.55;
    color: #8a6a52
}

.blg .cardlikes {
    font-size: 14px;
    line-height: 1.55;
    color: #C57335;
    margin-left: auto
}

.blg .cardlink {
    display: inline-block;
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.55;
    color: #C57335;
    text-decoration: none;
    font-weight: 700;
    position: relative
}

.blg .cardlink::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C57335;
    border-radius: 2px;
    transition: width .1s ease-out
}

.blg .cardlink:hover::after {
    width: 100%
}

.blg .featband {
    background: #C57335;
    padding: 64px 0
}

.blg .featinner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.blg .featlabel {
    font-size: 14px;
    line-height: 1.55;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #F6F1EC;
    opacity: .75;
    margin-bottom: 16px
}

.blg .feath2 {
    font-size: clamp(50px, 4vw, 66px);
    line-height: 1.1;
    color: #fff;
    margin: 0 0 16px
}

.blg .featp {
    font-size: 16px;
    line-height: 1.55;
    color: #F6F1EC;
    opacity: .9
}

.blg .featstats {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.blg .statrow {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px
}

.blg .statnum {
    font-size: 50px;
    line-height: 1.1;
    color: #D8CC8D;
    font-weight: 700;
    min-width: 80px
}

.blg .stattxt {
    font-size: 16px;
    line-height: 1.55;
    color: #F6F1EC;
    opacity: .88;
    padding-top: 8px
}

.blg .topicstrip {
    padding: 64px 0;
    background: #F6F1EC
}

.blg .topicinner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px
}

.blg .topich3 {
    font-size: 50px;
    line-height: 1.1;
    color: #2a1f14;
    margin: 0 0 32px
}

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

.blg .topicitem {
    background: #fff;
    border-radius: 14px;
    padding: 32px;
    box-shadow: -1px 4px 20px 0 #c5733517;
    transition: box-shadow .09s ease-out
}

.blg .topicitem:hover {
    box-shadow: -1px 8px 40px 0 #c573351c
}

.blg .topicnum {
    font-size: 50px;
    line-height: 1.1;
    color: #D8CC8D;
    font-weight: 700;
    margin-bottom: 8px
}

.blg .topich4 {
    font-size: 16px;
    line-height: 1.55;
    color: #2a1f14;
    font-weight: 700;
    margin: 0 0 8px
}

.blg .topicp {
    font-size: 14px;
    line-height: 1.55;
    color: #4a3728;
    margin: 0
}

.blg .signupband {
    padding: 96px 0;
    background: radial-gradient(circle at center, #c573352e 0%, #f6f1ec00 70%), #fff
}

.blg .signupinner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px
}

.blg .signuph3 {
    font-size: clamp(50px, 4.5vw, 66px);
    line-height: 1.1;
    color: #2a1f14;
    margin: 0
}

.blg .signuph3 strong {
    color: #C57335;
    font-weight: 700
}

.blg .signupp {
    font-size: 16px;
    line-height: 1.55;
    color: #4a3728;
    max-width: 540px
}

.blg .signupform {
    display: flex;
    flex-direction: row;
    gap: 8px;
    width: 100%;
    max-width: 480px
}

.blg .emailinput {
    flex: 1;
    padding: 8px 16px;
    border: 2px solid #D8CC8D;
    border-radius: 7px;
    font-size: 16px;
    line-height: 1.55;
    color: #2a1f14;
    background: #F6F1EC;
    outline: none;
    transition: border-color .1s ease-out
}

.blg .emailinput::placeholder {
    color: #8a6a52;
    font-style: italic
}

.blg .emailinput:focus {
    border-color: #C57335
}

.blg .subbtn {
    padding: 8px 32px;
    background: #2a1f14;
    color: #F6F1EC;
    border: none;
    border-radius: 7px;
    font-size: 16px;
    line-height: 1.55;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .1s ease-out
}

.blg .subbtn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #C57335;
    border-radius: 7px;
    transition: height .12s ease-out;
    z-index: 0
}

.blg .subbtn:hover::before {
    height: 100%
}

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

.blg .subbtn:active {
    box-shadow: inset -1px 2px 4px 0 #c5733521
}

.blg .subbtn:focus-visible {
    outline: 2px solid #C57335;
    outline-offset: 2px
}

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

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

    .blg .featinner {
        gap: 32px
    }

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

@media (max-width: 768px) {
    .blg .titlesplit {
        grid-template-columns: 1fr
    }

    .blg .titleright {
        height: 280px
    }

    .blg .titleleft {
        padding: 64px 32px
    }

    .blg .cards {
        grid-template-columns: 1fr
    }

    .blg .featinner {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .blg .topicgrid {
        grid-template-columns: 1fr
    }

    .blg .signupform {
        flex-direction: column
    }
}

@media (max-width: 320px) {
    .blg .pgh1 {
        font-size: 50px
    }

    .blg .pgwrap {
        padding: 0 16px
    }

    .blg .cardbody {
        padding: 16px
    }
}

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

.abauth .aw-top {
    max-width: 1100px;
    margin: 0 auto;
    padding: 96px 32px 64px
}

.abauth .aw-top-grid {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 64px;
    position: relative
}

.abauth .aw-curves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    border-radius: 2px;
    z-index: 0
}

.abauth .aw-curves svg {
    position: absolute;
    top: -32px;
    right: -64px;
    opacity: .13;
    width: 480px;
    height: 420px
}

.abauth .aw-imgcard {
    flex: 0 0 320px;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: -1px 8px 40px 0 #c573351c;
    z-index: 1
}

.abauth .aw-imgcard img {
    width: 320px;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform .12s ease-out
}

.abauth .aw-imgcard:hover img {
    transform: scale(1.03)
}

.abauth .aw-imgtint {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #c5733573 0%, transparent 55%);
    transition: opacity .1s ease-out;
    pointer-events: none
}

.abauth .aw-imgcard:hover .aw-imgtint {
    opacity: 0
}

.abauth .aw-bracket {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 28px;
    height: 28px;
    border-top: 2px solid #c57335b3;
    border-left: 2px solid #c57335b3;
    border-radius: 2px;
    pointer-events: none
}

.abauth .aw-bracketbr {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-bottom: 2px solid #c57335b3;
    border-right: 2px solid #c57335b3;
    border-radius: 2px;
    pointer-events: none
}

.abauth .aw-text {
    flex: 1 1 0;
    position: relative;
    z-index: 1;
    padding-bottom: 8px
}

.abauth .aw-label {
    font-size: 14px;
    line-height: 1.55;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #C57335;
    font-weight: 700;
    margin-bottom: 16px
}

.abauth .aw-h1 {
    font-size: 66px;
    line-height: 1.1;
    color: #2a1f14;
    margin-bottom: 32px;
    font-weight: 800
}

.abauth .aw-h1 span {
    display: block
}

.abauth .aw-quote {
    font-size: 16px;
    line-height: 1.55;
    color: #5a3e28;
    border-top: 2px solid #D8CC8D;
    padding-top: 16px;
    max-width: 420px;
    font-style: italic
}

.abauth .aw-quote strong {
    color: #C57335;
    font-style: normal;
    font-weight: 700
}

.abauth .aw-split {
    position: relative;
    overflow: hidden
}

.abauth .aw-splitbg {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    z-index: 0
}

.abauth .aw-splitbgtop {
    flex: 0 0 52%;
    background: #F6F1EC
}

.abauth .aw-splitbgbot {
    flex: 1;
    background: #2a1f14
}

.abauth .aw-splitinner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 32px 96px;
    position: relative;
    z-index: 1
}

.abauth .aw-splitrow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start
}

.abauth .aw-story {
    background: #fff;
    border-radius: 14px;
    padding: 32px;
    box-shadow: -1px 4px 20px 0 #c5733517;
    position: relative
}

.abauth .aw-story-bracket {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    border-top: 2px solid #D8CC8D;
    border-right: 2px solid #D8CC8D;
    border-radius: 2px;
    pointer-events: none
}

.abauth .aw-story-bracketbl {
    position: absolute;
    bottom: -8px;
    left: -8px;
    width: 22px;
    height: 22px;
    border-bottom: 2px solid #D8CC8D;
    border-left: 2px solid #D8CC8D;
    border-radius: 2px;
    pointer-events: none
}

.abauth .aw-sh2 {
    font-size: 50px;
    line-height: 1.1;
    color: #2a1f14;
    margin-bottom: 16px;
    font-weight: 800
}

.abauth .aw-sh2 span {
    display: block
}

.abauth .aw-para {
    font-size: 16px;
    line-height: 1.55;
    color: #4a3525;
    margin-bottom: 16px
}

.abauth .aw-para strong {
    color: #C57335;
    font-weight: 700
}

.abauth .aw-para:last-child {
    margin-bottom: 0
}

.abauth .aw-right {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.abauth .aw-imgpair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.abauth .aw-imgwrap {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: -1px 2px 4px 0 #c5733514;
    position: relative
}

.abauth .aw-imgwrap img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform .1s ease-out
}

.abauth .aw-imgwrap:hover img {
    transform: scale(1.04)
}

.abauth .aw-imgovl {
    position: absolute;
    inset: 0;
    background: #c573354d;
    transition: opacity .1s ease-out;
    pointer-events: none;
    border-radius: 14px
}

.abauth .aw-imgwrap:hover .aw-imgovl {
    opacity: 0
}

.abauth .aw-statrow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.abauth .aw-stat {
    background: #c573351a;
    border-radius: 14px;
    padding: 16px;
    position: relative;
    overflow: hidden
}

.abauth .aw-stat-num {
    font-size: 50px;
    line-height: 1.1;
    color: #C57335;
    font-weight: 800;
    display: block
}

.abauth .aw-stat-lbl {
    font-size: 14px;
    line-height: 1.55;
    color: #5a3e28;
    font-weight: 600
}

.abauth .aw-expertise {
    background: #fff;
    border-radius: 14px;
    padding: 32px;
    box-shadow: -1px 2px 4px 0 #c5733514
}

.abauth .aw-exph4 {
    font-size: 16px;
    line-height: 1.55;
    color: #2a1f14;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 16px
}

.abauth .aw-explist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.abauth .aw-expitem {
    font-size: 14px;
    line-height: 1.55;
    color: #4a3525;
    padding: 8px 16px;
    background: #F6F1EC;
    border-radius: 7px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: background .08s ease-out
}

.abauth .aw-expitem:hover {
    background: #ede5d8
}

.abauth .aw-expitem-reveal {
    position: absolute;
    inset: 0;
    background: #C57335;
    border-radius: 7px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .12s ease-out;
    pointer-events: none;
    z-index: 0
}

.abauth .aw-expitem:hover .aw-expitem-reveal {
    transform: scaleX(1)
}

.abauth .aw-expitem-txt {
    position: relative;
    z-index: 1;
    transition: color .08s ease-out
}

.abauth .aw-expitem:hover .aw-expitem-txt {
    color: #fff
}

.abauth .aw-darkcard {
    background: #3d2a18;
    border-radius: 14px;
    padding: 32px;
    box-shadow: -1px 8px 40px 0 #c573351c
}

.abauth .aw-darkcard-h {
    font-size: 16px;
    line-height: 1.55;
    color: #D8CC8D;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 16px
}

.abauth .aw-darkcard-p {
    font-size: 16px;
    line-height: 1.55;
    color: #e8ddd0;
    margin-bottom: 16px
}

.abauth .aw-darkcard-p:last-child {
    margin-bottom: 0
}

.abauth .aw-darkcard-p strong {
    color: #D8CC8D;
    font-weight: 700
}

.abauth .aw-link {
    color: #C57335;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    display: inline-block
}

.abauth .aw-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C57335;
    border-radius: 2px;
    transition: width .1s ease-out
}

.abauth .aw-link:hover::after {
    width: 100%
}

@keyframes bgpan {
    0% {
        background-position: center 0
    }

    100% {
        background-position: center 8%
    }
}

@media (max-width: 1024px) {
    .abauth .aw-h1 {
        font-size: 50px
    }

    .abauth .aw-imgcard {
        flex: 0 0 260px
    }

    .abauth .aw-imgcard img {
        width: 260px;
        height: 340px
    }

    .abauth .aw-splitrow {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .abauth .aw-curves svg {
        width: 320px;
        height: 280px
    }
}

@media (max-width: 768px) {
    .abauth .aw-top {
        padding: 64px 16px 32px
    }

    .abauth .aw-top-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px
    }

    .abauth .aw-imgcard {
        flex: 0 0 auto;
        width: 100%;
        max-width: 320px
    }

    .abauth .aw-imgcard img {
        width: 100%;
        height: 280px
    }

    .abauth .aw-h1 {
        font-size: 50px
    }

    .abauth .aw-sh2 {
        font-size: 50px
    }

    .abauth .aw-splitinner {
        padding: 32px 16px 64px
    }

    .abauth .aw-imgpair {
        grid-template-columns: 1fr
    }

    .abauth .aw-statrow {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 320px) {
    .abauth .aw-h1 {
        font-size: 50px
    }

    .abauth .aw-top {
        padding: 32px 16px
    }

    .abauth .aw-statrow {
        grid-template-columns: 1fr
    }
}

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

.qz .wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px
}

.qz .divband {
    width: 100%;
    height: 6px;
    background: #C57335
}

.qz .divband.light {
    background: #D8CC8D
}

.qz .titlegrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    position: relative
}

.qz .imgside {
    position: relative;
    overflow: hidden
}

.qz .imgside img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: slowzoom 12s ease-out infinite alternate
}

@keyframes slowzoom {
    from {
        transform: scale(1)
    }

    to {
        transform: scale(1.07)
    }
}

.qz .imgside::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #c573352e 0%, #f6f1ecd1 100%);
    pointer-events: none;
    transition: opacity .12s ease-out
}

.qz .imgside:hover::after {
    opacity: .4
}

.qz .textside {
    background: #F6F1EC;
    padding: 64px 64px 64px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative
}

.qz .textside::before {
    content: "";
    position: absolute;
    top: 32px;
    left: 24px;
    right: 24px;
    bottom: 32px;
    border: 1px solid #D8CC8D;
    border-radius: 14px;
    pointer-events: none
}

.qz .textside::after {
    content: "";
    position: absolute;
    top: 28px;
    left: 20px;
    right: 20px;
    bottom: 28px;
    border: 1px solid #c5733538;
    border-radius: 14px;
    pointer-events: none
}

.qz .pagelabel {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #C57335;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px
}

.qz .diamond {
    width: 7px;
    height: 7px;
    background: #C57335;
    transform: rotate(45deg);
    display: inline-block;
    flex-shrink: 0
}

.qz .pagetitle {
    font-size: 50px;
    line-height: 1.1;
    color: #2b1f14;
    font-weight: 800;
    margin: 0 0 16px
}

.qz .pagetitle span {
    display: block
}

.qz .pagedesc {
    font-size: 16px;
    line-height: 1.55;
    color: #4a3728;
    margin: 0 0 32px;
    max-width: 400px
}

.qz .statrow {
    display: flex;
    flex-direction: row;
    gap: 32px;
    margin-top: 8px
}

.qz .stat {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.qz .statnum {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 800;
    color: #C57335
}

.qz .statlabel {
    font-size: 14px;
    line-height: 1.55;
    color: #6b5040;
    text-transform: uppercase;
    letter-spacing: .1em
}

.qz .divband {
    height: 6px
}

.qz .quizsec {
    background: #fff;
    padding: 96px 0
}

.qz .quizhead {
    text-align: center;
    margin-bottom: 64px
}

.qz .quizhead h2 {
    font-size: 50px;
    line-height: 1.1;
    color: #2b1f14;
    font-weight: 800;
    margin: 0 0 16px
}

.qz .quizhead p {
    font-size: 16px;
    line-height: 1.55;
    color: #4a3728;
    max-width: 560px;
    margin: 0 auto
}

.qz .qblock {
    background: #F6F1EC;
    border-radius: 14px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: -1px 2px 4px 0 #c5733514;
    position: relative
}

.qz .qblock.done {
    box-shadow: -1px 4px 20px 0 #c5733517
}

.qz .qnum {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #C57335;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px
}

.qz .qtriangle {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid #C57335;
    display: inline-block
}

.qz .qtext {
    font-size: 16px;
    line-height: 1.55;
    color: #2b1f14;
    font-weight: 700;
    margin: 0 0 16px
}

.qz .opts {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.qz .optlabel {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 7px;
    background: #fff;
    cursor: pointer;
    transition: background .1s ease-out, box-shadow .08s ease-out;
    box-shadow: -1px 2px 4px 0 #c5733514;
    position: relative;
    overflow: hidden
}

.qz .optlabel::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: #c5733512;
    transition: width .1s ease-out;
    border-radius: 7px
}

.qz .optlabel:hover::before {
    width: 100%
}

.qz .optlabel:hover {
    box-shadow: -1px 4px 20px 0 #c5733517
}

.qz .optlabel input[type="radio"] {
    margin-top: 2px;
    accent-color: #C57335;
    flex-shrink: 0;
    box-shadow: inset 0 1px 3px #c573352e
}

.qz .opttext {
    font-size: 16px;
    line-height: 1.55;
    color: #3a2a1c;
    position: relative
}

.qz .feedback {
    display: none;
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 7px;
    font-size: 14px;
    line-height: 1.55
}

.qz .feedback.correct {
    background: #c573351f;
    color: #7a3d0a
}

.qz .feedback.wrong {
    background: #d8cc8d59;
    color: #5a4010
}

.qz .feedback.show {
    display: block
}

.qz .checkbtn {
    margin-top: 16px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #C57335;
    background: #fff;
    border: 2px solid #C57335;
    border-radius: 7px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .1s ease-out
}

.qz .checkbtn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #C57335;
    transition: height .12s ease-out;
    z-index: 0
}

.qz .checkbtn:hover::after {
    height: 100%
}

.qz .checkbtn:hover {
    color: #fff
}

.qz .checkbtn span {
    position: relative;
    z-index: 1
}

.qz .checkbtn:active {
    box-shadow: inset 0 2px 6px #c5733538
}

.qz .scorebox {
    display: none;
    background: #F6F1EC;
    border-radius: 14px;
    padding: 32px;
    text-align: center;
    margin-top: 32px;
    box-shadow: -1px 8px 40px 0 #c573351c
}

.qz .scorebox.visible {
    display: block
}

.qz .scorenum {
    font-size: 66px;
    line-height: 1.1;
    font-weight: 800;
    color: #C57335
}

.qz .scoretxt {
    font-size: 16px;
    line-height: 1.55;
    color: #4a3728;
    margin-top: 8px
}

.qz .submitbtn {
    margin-top: 32px;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #fff;
    background: #C57335;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .1s ease-out;
    display: block;
    width: 100%
}

.qz .submitbtn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #2b1f14;
    transition: height .12s ease-out;
    z-index: 0
}

.qz .submitbtn:hover::after {
    height: 100%
}

.qz .submitbtn span {
    position: relative;
    z-index: 1
}

.qz .submitbtn:active {
    box-shadow: inset 0 2px 8px #c573354d
}

.qz .aboutsec {
    padding: 96px 0 64px;
    position: relative
}

.qz .aboutsec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #F6F1EC;
    z-index: 0
}

@keyframes cornerbg {
    0% {
        background-position: 0 0%, 100% 100%
    }

    50% {
        background-position: 8% 8%, 92% 92%
    }

    100% {
        background-position: 0 0%, 100% 100%
    }
}

.qz .aboutinner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start
}

.qz .aboutleft h3 {
    font-size: 50px;
    line-height: 1.1;
    color: #2b1f14;
    font-weight: 800;
    margin: 0 0 16px
}

.qz .aboutleft h3 span {
    display: block
}

.qz .aboutleft p {
    font-size: 16px;
    line-height: 1.55;
    color: #4a3728;
    margin: 0 0 16px
}

.qz .aboutleft strong {
    color: #C57335;
    font-weight: 700
}

.qz .tipgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.qz .tip {
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    box-shadow: -1px 2px 4px 0 #c5733514;
    transition: box-shadow .1s ease-out
}

.qz .tip:hover {
    box-shadow: -1px 4px 20px 0 #c5733517
}

.qz .tiptop {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px
}

.qz .tipicon {
    width: 28px;
    height: 28px;
    background: #c573351f;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.qz .tipicon svg {
    width: 14px;
    height: 14px
}

.qz .tiplabel {
    font-size: 14px;
    font-weight: 700;
    color: #2b1f14;
    text-transform: uppercase;
    letter-spacing: .08em
}

.qz .tipdesc {
    font-size: 14px;
    line-height: 1.55;
    color: #6b5040;
    margin: 0
}

.qz .aboutsec {
    background: linear-gradient(135deg, #F6F1EC 0%, #fff 50%, #F6F1EC 100%);
    background-size: 300% 300%;
    animation: cornerbg2 8s ease-in-out infinite
}

@keyframes cornerbg2 {
    0% {
        background-position: 0 0
    }

    50% {
        background-position: 100% 100%
    }

    100% {
        background-position: 0 0
    }
}

.qz .aboutsec::before {
    display: none
}

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

    .qz .imgside {
        height: 320px
    }

    .qz .textside {
        padding: 48px 32px
    }

    .qz .aboutinner {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .qz .pagetitle {
        font-size: clamp(36px, 5vw, 50px)
    }
}

@media (max-width: 768px) {
    .qz .textside {
        padding: 32px 16px
    }

    .qz .textside::before,
    .qz .textside::after {
        display: none
    }

    .qz .statrow {
        flex-direction: column;
        gap: 16px
    }

    .qz .tipgrid {
        grid-template-columns: 1fr
    }

    .qz .quizsec {
        padding: 64px 0
    }

    .qz .aboutsec {
        padding: 64px 0
    }

    .qz .quizhead h2 {
        font-size: clamp(28px, 6vw, 50px)
    }

    .qz .aboutleft h3 {
        font-size: clamp(28px, 6vw, 50px)
    }

    .qz .wrap {
        padding: 0 16px
    }
}

@media (max-width: 320px) {
    .qz .pagetitle {
        font-size: 28px
    }

    .qz .statnum {
        font-size: 36px
    }
}

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

.frst .bd {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px
}

.frst .titblock {
    background: #F6F1EC;
    padding: 96px 0 0;
    position: relative
}

.frst .titblock::after {
    content: '';
    display: block;
    width: 100%;
    height: 64px;
    background: linear-gradient(to bottom right, #F6F1EC 50%, transparent 50%)
}

.frst .titinner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.frst .tittext {
    padding: 32px 16px 32px 0
}

.frst .titlabel {
    font-size: 14px;
    line-height: 1.55;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #C57335;
    font-weight: 700;
    margin-bottom: 16px
}

.frst .tith1 {
    font-size: 66px;
    line-height: 1.1;
    color: #2a1f14;
    margin-bottom: 32px;
    font-weight: 800
}

.frst .tith1 span {
    color: #C57335;
    display: block
}

.frst .titdesc {
    font-size: 16px;
    line-height: 1.55;
    color: #3d2e1e;
    margin-bottom: 32px;
    max-width: 480px
}

.frst .titcta {
    display: inline-block;
    font-size: 16px;
    line-height: 1.55;
    color: #fff;
    background: #C57335;
    padding: 16px 32px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: color .1s ease-out;
    box-shadow: -1px 4px 20px 0 #c5733517
}

.frst .titcta::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #2a1f14;
    transition: height .12s ease-out;
    z-index: 0
}

.frst .titcta:hover::before {
    height: 100%
}

.frst .titcta:hover {
    color: #fff
}

.frst .titcta span {
    position: relative;
    z-index: 1
}

.frst .titimgwrap {
    position: relative;
    padding: 16px
}

.frst .titimgframe {
    border: 4px solid #D8CC8D;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: -1px 8px 40px 0 #c573351c
}

.frst .titimgframe img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: filter .15s ease-out
}

.frst .titimgframe:hover img {
    filter: grayscale(0%)
}

.frst .titimgframe::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #c573352e;
    transition: opacity .12s ease-out;
    pointer-events: none
}

.frst .titimgframe:hover::after {
    opacity: 0
}

.frst .titdeco {
    position: absolute;
    top: 32px;
    right: -16px;
    width: 80px;
    height: 80px;
    border: 3px solid #D8CC8D;
    border-radius: 14px;
    opacity: .5;
    pointer-events: none;
    animation: rotateSlow 18s linear infinite
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.frst .wavesvg {
    display: block;
    width: 100%;
    margin-bottom: -2px
}

.frst .themed {
    background: #fff;
    padding: 96px 0
}

.frst .themedinner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px
}

.frst .themedlabel {
    font-size: 14px;
    line-height: 1.55;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #C57335;
    font-weight: 700;
    margin-bottom: 16px
}

.frst .themedh2 {
    font-size: 50px;
    line-height: 1.1;
    color: #2a1f14;
    margin-bottom: 64px;
    font-weight: 800;
    max-width: 600px
}

.frst .themedgrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px
}

.frst .themcard {
    border-radius: 14px;
    background: #F6F1EC;
    padding: 32px;
    box-shadow: -1px 2px 4px 0 #c5733514;
    transition: box-shadow .1s ease-out
}

.frst .themcard:hover {
    box-shadow: -1px 8px 40px 0 #c573351c
}

.frst .themcardnum {
    font-size: 50px;
    line-height: 1.1;
    color: #D8CC8D;
    font-weight: 800;
    margin-bottom: 16px
}

.frst .themcardh3 {
    font-size: 16px;
    line-height: 1.55;
    color: #2a1f14;
    font-weight: 700;
    margin-bottom: 8px
}

.frst .themcardp {
    font-size: 14px;
    line-height: 1.55;
    color: #5a4232
}

.frst .themcardlink {
    display: inline-block;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 700;
    color: #C57335;
    text-decoration: none;
    position: relative
}

.frst .themcardlink::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C57335;
    transition: width .1s ease-out
}

.frst .themcardlink:hover::after {
    width: 100%
}

.frst .postlisting {
    background: #F6F1EC;
    padding: 96px 0;
    position: relative
}

.frst .postlistinginner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    gap: 32px;
    align-items: start
}

.frst .postside {
    padding-top: 8px
}

.frst .postsidelabel {
    font-size: 14px;
    line-height: 1.55;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #C57335;
    font-weight: 700;
    margin-bottom: 16px
}

.frst .postsidep {
    font-size: 14px;
    line-height: 1.55;
    color: #5a4232;
    margin-bottom: 32px
}

.frst .postsidemeta {
    font-size: 14px;
    line-height: 2;
    color: #3d2e1e;
    font-weight: 700
}

.frst .postcenter {
    min-width: 0
}

.frst .postcenterh2 {
    font-size: 50px;
    line-height: 1.1;
    color: #2a1f14;
    font-weight: 800;
    margin-bottom: 32px
}

.frst .postcard {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: -1px 4px 20px 0 #c5733517;
    transition: box-shadow .12s ease-out
}

.frst .postcard:hover {
    box-shadow: -1px 8px 40px 0 #c573351c
}

.frst .postcardimgwrap {
    position: relative;
    overflow: hidden;
    border-radius: 14px 14px 0 0
}

.frst .postcardimgwrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform .15s ease-out;
    filter: grayscale(100%)
}

.frst .postcard:hover .postcardimgwrap img {
    transform: scale(1.03);
    filter: grayscale(0%)
}

.frst .postcardimgwrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #c5733526;
    transition: opacity .12s ease-out;
    pointer-events: none
}

.frst .postcard:hover .postcardimgwrap::after {
    opacity: 0
}

.frst .postcardtag {
    display: inline-block;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 700;
    color: #C57335;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 4px 8px;
    background: #c573351a;
    border-radius: 2px;
    margin-bottom: 8px
}

.frst .postcardtag2 {
    display: inline-block;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 700;
    color: #5a4232;
    background: #D8CC8D;
    border-radius: 2px;
    padding: 4px 8px;
    margin-left: 8px;
    margin-bottom: 8px
}

.frst .postcardbody {
    padding: 32px
}

.frst .postcardh3 {
    font-size: 16px;
    line-height: 1.55;
    color: #2a1f14;
    font-weight: 700;
    margin-bottom: 8px
}

.frst .postcardsubtitle {
    font-size: 14px;
    line-height: 1.55;
    color: #5a4232;
    margin-bottom: 16px
}

.frst .postcarddesc {
    font-size: 14px;
    line-height: 1.55;
    color: #3d2e1e;
    margin-bottom: 16px
}

.frst .postcardfoot {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.frst .postcardauthor {
    font-size: 14px;
    line-height: 1.55;
    color: #5a4232
}

.frst .postcardread {
    font-size: 14px;
    line-height: 1.55;
    color: #5a4232
}

.frst .postcardlikes {
    font-size: 14px;
    line-height: 1.55;
    color: #C57335;
    font-weight: 700
}

.frst .postcardlink {
    display: inline-block;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 700;
    color: #C57335;
    text-decoration: none;
    position: relative
}

.frst .postcardlink::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C57335;
    transition: width .08s ease-out
}

.frst .postcardlink:hover::after {
    width: 100%
}

.frst .postrightsidebar {
    padding-top: 8px
}

.frst .prshead {
    font-size: 14px;
    line-height: 1.55;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #C57335;
    font-weight: 700;
    margin-bottom: 16px
}

.frst .prspick {
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: -1px 2px 4px 0 #c5733514
}

.frst .prspickh4 {
    font-size: 14px;
    line-height: 1.55;
    color: #2a1f14;
    font-weight: 700;
    margin-bottom: 4px
}

.frst .prspickp {
    font-size: 14px;
    line-height: 1.55;
    color: #5a4232
}

.frst .authorstrip {
    background: #3d1f08;
    padding: 96px 0;
    position: relative
}

.frst .authorstripinner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.frst .authorimgwrap {
    position: relative
}

.frst .authorimgframe {
    border: 4px solid #d8cc8d66;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: -1px 8px 40px 0 #c573351c
}

.frst .authorimgframe img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: filter .15s ease-out
}

.frst .authorimgframe:hover img {
    filter: grayscale(0%)
}

.frst .authorimgframe::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #c5733533;
    transition: opacity .12s ease-out;
    pointer-events: none
}

.frst .authorimgframe:hover::after {
    opacity: 0
}

.frst .authortext {
    color: #F6F1EC
}

.frst .authorlabel {
    font-size: 14px;
    line-height: 1.55;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #D8CC8D;
    font-weight: 700;
    margin-bottom: 16px
}

.frst .authorh2 {
    font-size: 50px;
    line-height: 1.1;
    color: #F6F1EC;
    font-weight: 800;
    margin-bottom: 16px
}

.frst .authorp {
    font-size: 16px;
    line-height: 1.55;
    color: #d4c5b0;
    margin-bottom: 16px
}

.frst .authorlink {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #D8CC8D;
    text-decoration: none;
    position: relative;
    margin-top: 8px
}

.frst .authorlink::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D8CC8D;
    transition: width .1s ease-out
}

.frst .authorlink:hover::after {
    width: 100%
}

.frst .scalestats {
    background: #fff;
    padding: 96px 0
}

.frst .scalestatsinner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px
}

.frst .scaleh2 {
    font-size: 50px;
    line-height: 1.1;
    color: #2a1f14;
    font-weight: 800;
    margin-bottom: 64px;
    max-width: 700px
}

.frst .scalegrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start
}

.frst .scaleleft {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.frst .scalestat {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start
}

.frst .scalestatnum {
    font-size: 50px;
    line-height: 1.1;
    color: #C57335;
    font-weight: 800;
    min-width: 80px
}

.frst .scalestattext {
    padding-top: 8px
}

.frst .scalestathead {
    font-size: 16px;
    line-height: 1.55;
    color: #2a1f14;
    font-weight: 700;
    margin-bottom: 4px
}

.frst .scalestatp {
    font-size: 14px;
    line-height: 1.55;
    color: #5a4232
}

.frst .scaleright {
    background: #F6F1EC;
    border-radius: 14px;
    padding: 32px
}

.frst .scalerighthead {
    font-size: 16px;
    line-height: 1.55;
    color: #2a1f14;
    font-weight: 700;
    margin-bottom: 16px
}

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

.frst .scalerightlist li {
    font-size: 14px;
    line-height: 1.55;
    color: #3d2e1e;
    padding-left: 16px;
    position: relative
}

.frst .scalerightlist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #C57335;
    border-radius: 2px
}

.frst .underrated {
    background: #F6F1EC;
    padding: 96px 0
}

.frst .underratedinner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px
}

.frst .underratedlabel {
    font-size: 14px;
    line-height: 1.55;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #C57335;
    font-weight: 700;
    margin-bottom: 16px
}

.frst .underratedh2 {
    font-size: 50px;
    line-height: 1.1;
    color: #2a1f14;
    font-weight: 800;
    margin-bottom: 64px;
    max-width: 600px
}

.frst .urpairs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px
}

.frst .uritem {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 16px;
    align-items: start;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: -1px 2px 4px 0 #c5733514;
    transition: box-shadow .1s ease-out
}

.frst .uritem:hover {
    box-shadow: -1px 8px 40px 0 #c573351c
}

.frst .urimgwrap {
    overflow: hidden;
    height: 100%;
    min-height: 140px
}

.frst .urimgwrap img {
    width: 140px;
    height: 100%;
    min-height: 140px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: filter .15s ease-out
}

.frst .uritem:hover .urimgwrap img {
    filter: grayscale(0%)
}

.frst .urtext {
    padding: 16px 16px 16px 0
}

.frst .urtag {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #C57335;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px
}

.frst .urh3 {
    font-size: 14px;
    line-height: 1.55;
    color: #2a1f14;
    font-weight: 700;
    margin-bottom: 4px
}

.frst .urp {
    font-size: 14px;
    line-height: 1.55;
    color: #5a4232;
    margin-bottom: 8px
}

.frst .urlink {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #C57335;
    text-decoration: none;
    position: relative
}

.frst .urlink::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C57335;
    transition: width .08s ease-out
}

.frst .urlink:hover::after {
    width: 100%
}

.frst .converse {
    background: #C57335;
    padding: 96px 0;
    position: relative
}

.frst .converseinner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.frst .converseleft {
    color: #fff
}

.frst .converselabel {
    font-size: 14px;
    line-height: 1.55;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #F6F1EC;
    font-weight: 700;
    margin-bottom: 16px;
    opacity: .8
}

.frst .converseh2 {
    font-size: 50px;
    line-height: 1.1;
    color: #fff;
    font-weight: 800;
    margin-bottom: 16px
}

.frst .conversep {
    font-size: 16px;
    line-height: 1.55;
    color: #ffffffd9;
    margin-bottom: 8px
}

.frst .converseform {
    background: #fff;
    border-radius: 14px;
    padding: 32px;
    box-shadow: -1px 8px 40px 0 #c573351c
}

.frst .formh3 {
    font-size: 16px;
    line-height: 1.55;
    color: #2a1f14;
    font-weight: 700;
    margin-bottom: 16px
}

.frst .formgroup {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px
}

.frst .formlbl {
    font-size: 14px;
    line-height: 1.55;
    color: #3d2e1e;
    font-weight: 700
}

.frst .forminput {
    font-size: 14px;
    line-height: 1.55;
    color: #2a1f14;
    border: 2px solid #D8CC8D;
    border-radius: 7px;
    padding: 8px 16px;
    background: #F6F1EC;
    outline: none;
    transition: border-color .1s ease-out;
    width: 100%;
    box-sizing: border-box
}

.frst .forminput:focus {
    border-color: #C57335;
    box-shadow: inset -1px 2px 4px 0 #c5733514
}

.frst .formtextarea {
    font-size: 14px;
    line-height: 1.55;
    color: #2a1f14;
    border: 2px solid #D8CC8D;
    border-radius: 7px;
    padding: 8px 16px;
    background: #F6F1EC;
    outline: none;
    transition: border-color .1s ease-out;
    width: 100%;
    box-sizing: border-box;
    min-height: 100px;
    resize: vertical
}

.frst .formtextarea:focus {
    border-color: #C57335;
    box-shadow: inset -1px 2px 4px 0 #c5733514
}

.frst .formbtn {
    display: inline-block;
    font-size: 16px;
    line-height: 1.55;
    color: #fff;
    background: #C57335;
    padding: 16px 32px;
    border-radius: 7px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .1s ease-out;
    width: 100%
}

.frst .formbtn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #2a1f14;
    transition: height .12s ease-out;
    z-index: 0
}

.frst .formbtn:hover::before {
    height: 100%
}

.frst .formbtn span {
    position: relative;
    z-index: 1
}

.frst .formbtn:active {
    box-shadow: inset -1px 2px 4px 0 #c5733514
}

.frst .quizstrip {
    background: #fff;
    padding: 64px 0
}

.frst .quizstripinner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 64px;
    justify-content: space-between
}

.frst .quiztext {
    flex: 1
}

.frst .quizlabel {
    font-size: 14px;
    line-height: 1.55;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #C57335;
    font-weight: 700;
    margin-bottom: 8px
}

.frst .quizh2 {
    font-size: 50px;
    line-height: 1.1;
    color: #2a1f14;
    font-weight: 800;
    margin-bottom: 16px
}

.frst .quizp {
    font-size: 16px;
    line-height: 1.55;
    color: #5a4232;
    margin-bottom: 32px;
    max-width: 480px
}

.frst .quizlink {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: #C57335;
    padding: 16px 32px;
    border-radius: 7px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color .1s ease-out;
    box-shadow: -1px 4px 20px 0 #c5733517
}

.frst .quizlink::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #2a1f14;
    transition: height .12s ease-out;
    z-index: 0
}

.frst .quizlink:hover::before {
    height: 100%
}

.frst .quizlink span {
    position: relative;
    z-index: 1
}

.frst .quizimgwrap {
    flex-shrink: 0;
    width: 320px
}

.frst .quizimgframe {
    border: 4px solid #D8CC8D;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: -1px 4px 20px 0 #c5733517
}

.frst .quizimgframe img {
    width: 320px;
    height: 240px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: filter .15s ease-out
}

.frst .quizimgframe:hover img {
    filter: grayscale(0%)
}

.frst .slidein {
    animation: slideFromRight .35s ease-out both
}

.frst .slidein2 {
    animation: slideFromRight .45s ease-out .08s both
}

.frst .slidein3 {
    animation: slideFromRight .4s ease-out .15s both
}

@keyframes slideFromRight {
    from {
        opacity: 0;
        transform: translateX(48px)
    }

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

@media (max-width: 1024px) {
    .frst .titinner {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }

    .frst .tith1 {
        font-size: 50px
    }

    .frst .themedgrid {
        grid-template-columns: 1fr 1fr
    }

    .frst .postlistinginner {
        grid-template-columns: 160px 1fr
    }

    .frst .postrightsidebar {
        display: none
    }

    .frst .scalegrid {
        grid-template-columns: 1fr
    }

    .frst .urpairs {
        grid-template-columns: 1fr
    }

    .frst .authorstripinner {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .frst .converseinner {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .frst .quizstripinner {
        flex-direction: column;
        gap: 32px
    }

    .frst .quizimgwrap {
        width: 100%
    }

    .frst .quizimgframe img {
        width: 100%;
        height: 220px
    }
}

@media (max-width: 768px) {
    .frst .titinner {
        grid-template-columns: 1fr
    }

    .frst .titimgwrap {
        display: none
    }

    .frst .tith1 {
        font-size: 50px
    }

    .frst .themedgrid {
        grid-template-columns: 1fr
    }

    .frst .postlistinginner {
        grid-template-columns: 1fr
    }

    .frst .postside {
        display: none
    }

    .frst .authorstripinner {
        grid-template-columns: 1fr
    }

    .frst .authorimgframe img {
        height: 260px
    }

    .frst .uritem {
        grid-template-columns: 1fr
    }

    .frst .urimgwrap img {
        width: 100%;
        height: 160px;
        min-height: 0
    }

    .frst .urimgwrap {
        height: 160px;
        min-height: 0
    }

    .frst .urtext {
        padding: 16px
    }

    .frst .converseinner {
        grid-template-columns: 1fr
    }

    .frst .scaleh2 {
        font-size: 50px
    }
}

@media (max-width: 320px) {
    .frst .bd {
        padding: 0 16px
    }

    .frst .tith1 {
        font-size: 50px
    }

    .frst .themedh2,
    .frst .postcenterh2,
    .frst .scaleh2,
    .frst .underratedh2,
    .frst .converseh2,
    .frst .quizh2,
    .frst .authorh2 {
        font-size: 50px
    }
}

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

.succ .wrap {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
}

.succ .mark {
    width: 64px;
    height: 64px;
    margin-bottom: 32px
}

.succ .markCircle {
    fill: none;
    stroke: #C57335;
    stroke-width: 2;
    stroke-dasharray: 157;
    stroke-dashoffset: 0
}

.succ .markCheck {
    fill: none;
    stroke: #C57335;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.succ .heading {
    font-size: 50px;
    line-height: 1.1;
    color: #2b1f12;
    margin-bottom: 16px;
    letter-spacing: -.5px
}

.succ .heading strong {
    color: #C57335;
    font-weight: 700
}

.succ .sub {
    font-size: 16px;
    line-height: 1.55;
    color: #5a4530;
    max-width: 480px;
    margin-bottom: 32px
}

.succ .divLine {
    width: 48px;
    height: 2px;
    background: #D8CC8D;
    margin: 0 auto 32px;
    border-radius: 2px
}

.succ .note {
    font-size: 14px;
    line-height: 1.55;
    color: #7a6248;
    max-width: 380px;
    margin-bottom: 64px
}

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

.succ .btnPrim {
    display: inline-block;
    font-size: 14px;
    line-height: 2;
    color: #fff;
    background: #C57335;
    padding: 8px 32px;
    border-radius: 7px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: -1px 4px 20px 0 #c5733517;
    transition: color .12s ease-out;
    border: none;
    cursor: pointer
}

.succ .btnPrim::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #ffffff26;
    transition: height .1s ease-out;
    border-radius: 7px
}

.succ .btnPrim:hover::before {
    height: 100%
}

.succ .btnPrim:focus-visible {
    outline: 2px solid #C57335;
    outline-offset: 3px
}

.succ .btnSec {
    display: inline-block;
    font-size: 14px;
    line-height: 2;
    color: #C57335;
    background: transparent;
    padding: 8px 32px;
    border-radius: 7px;
    text-decoration: none;
    border: 1.5px solid #D8CC8D;
    position: relative;
    overflow: hidden;
    transition: border-color .1s ease-out, color .1s ease-out;
    cursor: pointer
}

.succ .btnSec::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #F6F1EC;
    transition: height .08s ease-out;
    border-radius: 7px;
    z-index: 0
}

.succ .btnSec:hover {
    border-color: #C57335
}

.succ .btnSec:hover::after {
    height: 100%
}

.succ .btnSec span {
    position: relative;
    z-index: 1
}

.succ .btnSec:focus-visible {
    outline: 2px solid #C57335;
    outline-offset: 3px
}

@media (max-width: 768px) {
    .succ {
        padding: 64px 16px
    }

    .succ .heading {
        font-size: 50px
    }

    .succ .actions {
        flex-direction: column;
        align-items: center
    }
}

@media (max-width: 320px) {
    .succ .heading {
        font-size: 32px
    }

    .succ .btnPrim,
    .succ .btnSec {
        padding: 8px 16px
    }
}