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

body {
    margin: 0
}

.pg-hd {
    position: relative;
    z-index: 100;
    background: linear-gradient(135deg, #fff 0%, #F4EEF3 60%, #ede3ec 100%);
    border-bottom: 2px solid #AE5195;
    box-shadow: 0 6px 14px 1px #ae519514
}

.pg-hd .hd-shell {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px
}

.hd-top {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
    min-height: 88px
}

.hd-brand {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
    order: 2
}

.brand-logo-hold {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-top: 2px solid #AE5195;
    border-bottom: 2px solid #AE5195;
    background: #fff;
    box-shadow: 0 1px 3px 1px #ae51950d 0 6px 14px 1px #ae519514;
    border-radius: 2px;
    flex-shrink: 0
}

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

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

.brand-name {
    font-family: 'Arimo', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    color: #2d1a28;
    letter-spacing: 0;
    text-decoration: none
}

.brand-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.1;
    color: #AE5195;
    font-weight: 400
}

.hd-menu-hold {
    display: flex;
    align-items: center;
    order: 1;
    flex: 1
}

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

.hd-menu li a {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 700;
    color: #2d1a28;
    text-decoration: none;
    padding: 8px 24px;
    border-radius: 7px;
    border: 1.5px solid transparent;
    display: block;
    transition: color .15s ease-out, background-color .18s ease-out, border-color .15s ease-out
}

.hd-menu li a:hover,
.hd-menu li a:focus {
    color: #AE5195;
    background-color: #fff;
    border-color: #BC9ACB;
    outline: none
}

.hd-menu li a:focus-visible {
    outline: 2px solid #AE5195;
    outline-offset: 2px
}

.hd-menu li.active a {
    color: #AE5195;
    background: #fff;
    border-color: #AE5195
}

.hd-accent-bar {
    height: 4px;
    background: linear-gradient(90deg, #AE5195 0%, #BC9ACB 60%, #F4EEF3 100%);
    border-radius: 2px 2px 0 0
}

@media (max-width: 992px) {
    .hd-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 24px 0;
        min-height: unset
    }

    .hd-brand {
        order: 1
    }

    .hd-menu-hold {
        order: 2;
        flex: unset;
        width: 100%
    }

    .hd-menu {
        gap: 8px
    }

    .hd-menu li a {
        padding: 8px 16px;
        font-size: 16px
    }
}

@media (max-width: 576px) {
    .brand-name {
        font-size: 30px
    }

    .hd-menu li a {
        padding: 8px;
        font-size: 16px
    }
}

.pg-ft {
    background: #2d1a28;
    border-top: 4px solid #AE5195
}

.ft-shell {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px
}

.ft-body {
    padding: 80px 0 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: start
}

.ft-col-group {
    display: flex;
    gap: 80px;
    flex-wrap: wrap
}

.ft-col {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ft-col-label {
    font-family: 'Arimo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
    color: #BC9ACB;
    text-transform: uppercase;
    letter-spacing: .12em
}

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

.ft-col-links li a {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #F4EEF3;
    text-decoration: none;
    display: inline-block;
    border-bottom: 1.5px solid transparent;
    transition: color .12s ease, border-color .15s ease-out
}

.ft-col-links li a:hover,
.ft-col-links li a:focus {
    color: #AE5195;
    border-bottom-color: #AE5195;
    outline: none
}

.ft-col-links li a:focus-visible {
    outline: 2px solid #AE5195;
    outline-offset: 2px
}

.ft-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #F4EEF3;
    text-decoration: none
}

.ft-contact-item i {
    color: #BC9ACB;
    font-size: 16px;
    flex-shrink: 0
}

.ft-contact-item:hover,
.ft-contact-item:focus {
    color: #AE5195;
    outline: none
}

.ft-contact-item:focus-visible {
    outline: 2px solid #AE5195;
    outline-offset: 2px
}

.ft-brand-hold {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px
}

.ft-logo-hold {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-top: 2px solid #AE5195;
    border-bottom: 2px solid #AE5195;
    background: #fff;
    box-shadow: 0 1px 3px 1px #ae51950d 0 6px 14px 1px #ae519514;
    border-radius: 2px
}

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

.ft-brand-name {
    font-family: 'Arimo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
    color: #F4EEF3;
    text-align: right
}

.ft-bottom {
    border-top: 1.5px solid #bc9acb33;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px
}

.ft-copy {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #f4eef38c
}

.ft-copy strong {
    color: #BC9ACB;
    font-weight: 700
}

.ft-social {
    display: flex;
    align-items: center;
    gap: 8px
}

.ft-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 7px;
    border: 1.5px solid #bc9acb4d;
    color: #BC9ACB;
    font-size: 16px;
    text-decoration: none;
    transition: color .12s ease, border-color .15s ease-out, background-color .18s ease-out
}

.ft-social a:hover,
.ft-social a:focus {
    color: #fff;
    border-color: #AE5195;
    background-color: #AE5195;
    outline: none
}

.ft-social a:focus-visible {
    outline: 2px solid #AE5195;
    outline-offset: 2px
}

@media (max-width: 992px) {
    .ft-body {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .ft-brand-hold {
        align-items: flex-start;
        flex-direction: row;
        align-items: center
    }

    .ft-brand-name {
        text-align: left
    }
}

@media (max-width: 576px) {
    .ft-col-group {
        gap: 40px
    }

    .ft-body {
        padding: 40px 0 24px
    }

    .ft-bottom {
        flex-direction: column;
        align-items: flex-start
    }
}

.ck-bar {
    position: fixed;
    top: 24px;
    left: 24px;
    width: 320px;
    background: #fff;
    border: 2px solid #AE5195;
    border-radius: 7px;
    box-shadow: 0 8px 60px 1px #ae519524;
    padding: 24px;
    z-index: 8000;
    display: none;
    transform: translateY(-120%);
    transition: transform .22s ease-out
}

.ck-bar.ck-visible {
    transform: translateY(0)
}

.ck-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #2d1a28;
    margin: 0 0 24px
}

.ck-desc a {
    color: #AE5195;
    text-decoration: underline
}

.ck-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.ck-btn {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
    padding: 8px 24px;
    border-radius: 7px;
    border: 2px solid #AE5195;
    background: transparent;
    color: #AE5195;
    cursor: pointer;
    flex: 1;
    min-height: 44px;
    transition: background-color .18s ease-out, color .15s ease-out
}

.ck-btn:hover,
.ck-btn:focus {
    background-color: #AE5195;
    color: #fff;
    outline: none
}

.ck-btn:focus-visible {
    outline: 2px solid #AE5195;
    outline-offset: 2px
}

.ck-btn.decline {
    border-color: #BC9ACB;
    color: #2d1a28
}

.ck-btn.decline:hover,
.ck-btn.decline:focus {
    background-color: #BC9ACB;
    color: #fff
}

@media (max-width: 576px) {
    .ck-bar {
        width: calc(100vw - 48px);
        left: 24px
    }
}

.legal-details {
    max-width: 1170px;
    margin: 0 auto;
    padding: 80px 24px;
    color: #2d1a27;
    line-height: 1.75;
    font-size: 16px
}

.legal-details h1 {
    font-size: 42px;
    line-height: 1.1;
    color: #AE5195;
    margin: 0 0 40px;
    padding-bottom: 24px;
    border-bottom: 2px solid #BC9ACB
}

.legal-details h2 {
    font-size: 30px;
    line-height: 1.1;
    color: #2d1a27;
    margin: 80px 0 24px
}

.legal-details h3 {
    font-size: 16px;
    line-height: 1.75;
    color: #AE5195;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 40px 0 8px
}

.legal-details h4,
.legal-details h5,
.legal-details h6 {
    font-size: 16px;
    line-height: 1.75;
    color: #2d1a27;
    margin: 24px 0 8px
}

.legal-details ul,
.legal-details ol {
    margin: 24px 0;
    padding-left: 40px
}

.legal-details li {
    margin-bottom: 8px;
    line-height: 1.75
}

.legal-details ul li {
    list-style: none;
    position: relative;
    padding-left: 16px
}

.legal-details ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: #BC9ACB
}

.legal-details ol {
    list-style: decimal
}

.legal-details ol li::marker {
    color: #AE5195;
    font-size: 16px
}

.legal-details em,
.legal-details i {
    color: #AE5195;
    font-style: italic
}

.legal-details a {
    color: #AE5195;
    text-decoration: underline;
    text-decoration-color: #BC9ACB;
    text-underline-offset: 3px;
    transition: color .15s ease-out, text-decoration-color .15s ease-out
}

@media (min-width: 576px) {
    .legal-details a:hover {
        color: #7a3369;
        text-decoration-color: #AE5195
    }
}

.legal-details table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    font-size: 16px;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 1px 3px 1px #ae51950d 0 6px 14px 1px #ae519514
}

.legal-details thead {
    background: #AE5195;
    color: #fff
}

.legal-details th {
    padding: 24px;
    text-align: left;
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: .05em;
    text-transform: uppercase;
    border: none
}

.legal-details tbody tr {
    border-bottom: 1px solid #F4EEF3;
    transition: background .18s ease
}

.legal-details tbody tr:last-child {
    border-bottom: none
}

@media (min-width: 576px) {
    .legal-details tbody tr:hover {
        background: #F4EEF3
    }
}

.legal-details td {
    padding: 24px;
    line-height: 1.75;
    vertical-align: top
}

.legal-details tbody tr:nth-child(even) td {
    background: #f4eef380
}

.legal-details hr {
    border: none;
    border-top: 1px solid #BC9ACB;
    margin: 40px 0;
    opacity: .5
}

.legal-details div {
    margin-bottom: 24px
}

@media (max-width: 576px) {
    .legal-details {
        padding: 40px 24px
    }

    .legal-details h1 {
        font-size: 30px
    }

    .legal-details h2 {
        font-size: 30px;
        margin-top: 40px
    }

    .legal-details table {
        display: block;
        overflow-x: auto
    }

    .legal-details th,
    .legal-details td {
        padding: 8px 24px
    }
}

@media (min-width: 992px) {
    .legal-details {
        padding: 80px 40px
    }
}

.bld {
    background: #fff;
    overflow-x: hidden
}

.bld .pg-mw {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px
}

.bld .art-hd {
    padding: 80px 24px 40px;
    text-align: center;
    position: relative
}

.bld .art-hd::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #AE5195
}

.bld .art-hd::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: #BC9ACB
}

.bld .art-hd .geo-tl {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 32px;
    height: 32px;
    border-top: 2px solid #AE5195;
    border-left: 2px solid #AE5195;
    border-radius: 2px 0 0 0
}

.bld .art-hd .geo-tr {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 32px;
    height: 32px;
    border-top: 2px solid #BC9ACB;
    border-right: 2px solid #BC9ACB;
    border-radius: 0 2px 0 0
}

.bld .art-hd .cat-tag {
    display: inline-block;
    background: #F4EEF3;
    color: #AE5195;
    font-size: 16px;
    padding: 8px 24px;
    border-radius: 42px;
    margin-bottom: 24px;
    border: 1px solid #BC9ACB
}

.bld .art-hd .art-ttl {
    font-size: 42px;
    line-height: 1.1;
    color: #2a1520;
    max-width: 780px;
    margin: 0 auto 24px
}

.bld .art-hd .art-sub {
    font-size: 16px;
    line-height: 1.75;
    color: #5a3a50;
    max-width: 600px;
    margin: 0 auto 24px
}

.bld .art-hd .art-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap
}

.bld .art-hd .art-meta .m-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #7a5068
}

.bld .art-hd .art-meta .m-item i {
    color: #AE5195;
    font-size: 16px
}

.bld .art-img-w {
    max-width: 1170px;
    margin: 0 auto 80px;
    padding: 0 24px
}

.bld .art-img-w .img-fr {
    border-radius: 7px;
    overflow: hidden;
    aspect-ratio: 16/9;
    position: relative;
    box-shadow: 0 8px 60px 1px #ae519524
}

.bld .art-img-w .img-fr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.bld .art-img-w .img-fr .vign {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 70%, #2a152073 0%, #ae51951f 55%, transparent 80%);
    pointer-events: none
}

.bld .art-body {
    padding: 0 0 80px
}

.bld .art-body .pg-mw {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
    align-items: start
}

.bld .art-body .main-col .prose {
    font-size: 16px;
    line-height: 1.75;
    color: #2a1520
}

.bld .art-body .main-col .prose p {
    margin-bottom: 24px
}

.bld .art-body .main-col .prose h2 {
    font-size: 30px;
    line-height: 1.1;
    color: #2a1520;
    margin: 40px 0 24px;
    position: relative;
    padding-top: 24px
}

.bld .art-body .main-col .prose h2::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #AE5195;
    margin-bottom: 8px
}

.bld .art-body .main-col .prose code {
    background: #F4EEF3;
    color: #AE5195;
    padding: 2px 8px;
    border-radius: 2px;
    font-size: 16px;
    border: 1px solid #BC9ACB
}

.bld .art-body .main-col .prose details {
    border: 1px solid #BC9ACB;
    border-radius: 7px;
    margin-bottom: 24px;
    background: #F4EEF3
}

.bld .art-body .main-col .prose summary {
    padding: 24px;
    font-size: 16px;
    color: #2a1520;
    cursor: pointer;
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.bld .art-body .main-col .prose summary::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #AE5195;
    border-bottom: 2px solid #AE5195;
    transform: rotate(-45deg);
    transition: transform .15s ease-out;
    flex-shrink: 0
}

.bld .art-body .main-col .prose details[open] summary::before {
    transform: rotate(45deg)
}

.bld .art-body .main-col .prose details> :not(summary) {
    padding: 0 24px 24px;
    font-size: 16px;
    line-height: 1.75;
    color: #2a1520
}

.bld .art-body .main-col .prose ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px
}

.bld .art-body .main-col .prose ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: #2a1520;
    font-size: 16px;
    line-height: 1.75
}

.bld .art-body .main-col .prose ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    background: #AE5195;
    border-radius: 42px
}

.bld .art-body .main-col .prose a {
    color: #AE5195;
    text-decoration: none;
    background: linear-gradient(to right, #F4EEF3 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right;
    transition: background-position .18s ease-out
}

.bld .art-body .main-col .prose a:hover {
    background-position: left
}

.bld .art-body .side-col {
    position: sticky;
    top: 24px
}

.bld .art-body .side-col .qa-card {
    background: #F4EEF3;
    border-radius: 7px;
    border: 1px solid #BC9ACB;
    box-shadow: 0 1px 3px 1px #bc9acb0d 0 6px 14px 1px #bc9acb14;
    box-shadow: inset 0 2px 6px #ae51950f 0 6px 14px 1px #bc9acb14;
    padding: 24px
}

.bld .art-body .side-col .qa-card .qa-lbl {
    font-size: 16px;
    color: #AE5195;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px;
    display: block
}

.bld .art-body .side-col .qa-card .qa-q {
    font-size: 16px;
    line-height: 1.75;
    color: #2a1520;
    margin-bottom: 24px;
    font-weight: 600
}

.bld .art-body .side-col .qa-card .qa-divider {
    height: 1px;
    background: linear-gradient(to right, #AE5195, #BC9ACB, #F4EEF3);
    margin-bottom: 24px
}

.bld .art-body .side-col .qa-card .qa-a {
    font-size: 16px;
    line-height: 1.75;
    color: #5a3a50
}

.bld .art-body .side-col .tag-block {
    margin-top: 24px;
    padding: 24px;
    background: #fff;
    border-radius: 7px;
    border: 1px solid #BC9ACB;
    box-shadow: 0 1px 3px 1px #ae51950d
}

.bld .art-body .side-col .tag-block .tg-lbl {
    font-size: 16px;
    color: #7a5068;
    margin-bottom: 8px;
    display: block
}

.bld .art-body .side-col .tag-block .tg-pill {
    display: inline-block;
    background: #F4EEF3;
    color: #AE5195;
    border: 1px solid #BC9ACB;
    border-radius: 42px;
    padding: 8px 24px;
    font-size: 16px
}

.bld .art-body .side-col .like-block {
    margin-top: 24px;
    padding: 24px;
    background: linear-gradient(135deg, #AE5195 0%, #BC9ACB 60%, #F4EEF3 100%);
    border-radius: 7px;
    text-align: center;
    box-shadow: 0 6px 14px 1px #ae519514
}

.bld .art-body .side-col .like-block .lk-num {
    font-size: 42px;
    line-height: 1.1;
    color: #fff;
    display: block
}

.bld .art-body .side-col .like-block .lk-txt {
    font-size: 16px;
    color: #F4EEF3;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.bld .art-body .side-col .like-block .lk-txt i {
    color: #fff
}

.bld .art-cta {
    background: #2a1520;
    padding: 80px 24px;
    position: relative;
    overflow: hidden
}

.bld .art-cta .cta-bg {
    position: absolute;
    inset: 0;
    background-image: var(--cta-bg-img);
    background-size: cover;
    background-position: center;
    opacity: .18;
    pointer-events: none
}

.bld .art-cta .pg-mw {
    position: relative;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    align-items: center
}

.bld .art-cta .cta-over {
    font-size: 16px;
    color: #BC9ACB;
    text-transform: uppercase;
    letter-spacing: .1em;
    display: block;
    margin-bottom: 8px
}

.bld .art-cta .cta-ttl {
    font-size: 30px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px
}

.bld .art-cta .cta-txt {
    font-size: 16px;
    line-height: 1.75;
    color: #BC9ACB
}

.bld .art-cta .cta-acts {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.bld .art-cta .btn-pri {
    display: inline-block;
    background: #AE5195;
    color: #fff;
    padding: 24px 40px;
    border-radius: 7px;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background .15s ease-out, box-shadow .18s ease;
    box-shadow: 0 6px 14px 1px #ae519524
}

.bld .art-cta .btn-pri:hover {
    background: #8f3d7a;
    box-shadow: 0 8px 60px 1px #ae519538;
    transform: scale(1.02)
}

.bld .art-cta .btn-sec {
    display: inline-block;
    background: transparent;
    color: #F4EEF3;
    padding: 24px 40px;
    border-radius: 7px;
    font-size: 16px;
    text-decoration: none;
    border: 1px solid #BC9ACB;
    text-align: center;
    transition: border-color .15s ease-out, color .15s ease-out
}

.bld .art-cta .btn-sec:hover {
    border-color: #F4EEF3;
    color: #fff
}

@media (max-width: 992px) {
    .bld .art-body .pg-mw {
        grid-template-columns: 1fr
    }

    .bld .art-body .side-col {
        position: static
    }

    .bld .art-cta .pg-mw {
        grid-template-columns: 1fr
    }

    .bld .art-hd .art-ttl {
        font-size: 30px
    }

    .bld .art-cta .cta-acts {
        flex-direction: row;
        flex-wrap: wrap
    }
}

@media (max-width: 576px) {
    .bld .art-hd {
        padding: 40px 24px
    }

    .bld .art-hd .art-ttl {
        font-size: 30px
    }

    .bld .art-img-w {
        margin-bottom: 40px
    }

    .bld .art-cta {
        padding: 40px 24px
    }

    .bld .art-cta .cta-acts {
        flex-direction: column
    }

    .bld .art-body {
        padding: 0 0 40px
    }
}

@keyframes mask-reveal {
    from {
        clip-path: inset(0 50% 0 50%);
        opacity: 0
    }

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

.bld .art-hd .art-ttl {
    animation: mask-reveal .55s ease-out both
}

.bld .art-hd .art-sub {
    animation: mask-reveal .45s .12s ease-out both
}

.abt-auth {
    overflow-x: clip;
    padding: 0
}

.abt-auth .pg-cap {
    position: relative;
    padding: 80px 24px;
    text-align: center;
    background: #fff
}

.abt-auth .pg-cap .blobs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0
}

.abt-auth .pg-cap .blobs span {
    position: absolute;
    border-radius: 42px;
    filter: blur(48px);
    opacity: .18
}

.abt-auth .pg-cap .blobs span:nth-child(1) {
    width: 320px;
    height: 220px;
    background: #AE5195;
    top: -40px;
    left: -60px
}

.abt-auth .pg-cap .blobs span:nth-child(2) {
    width: 260px;
    height: 180px;
    background: #BC9ACB;
    bottom: 0;
    right: -40px
}

.abt-auth .pg-cap .blobs span:nth-child(3) {
    width: 180px;
    height: 180px;
    background: #AE5195;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.abt-auth .pg-cap .cap-body {
    position: relative;
    z-index: 1;
    max-width: 1170px;
    margin: 0 auto
}

.abt-auth .pg-cap .overline {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: #AE5195;
    margin-bottom: 24px;
    vertical-align: middle
}

.abt-auth .pg-cap .cap-label {
    display: block;
    font-size: 16px;
    color: #AE5195;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 24px
}

.abt-auth .pg-cap h1 {
    font-size: 58px;
    line-height: 1.1;
    color: #1a1118;
    margin: 0 0 24px;
    font-weight: 700
}

.abt-auth .pg-cap h1 .grad-word {
    background: linear-gradient(120deg, #AE5195 0%, #BC9ACB 60%, #F4EEF3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.abt-auth .pg-cap .cap-sub {
    font-size: 16px;
    line-height: 1.75;
    color: #3d2b38;
    max-width: 560px;
    margin: 0 auto 40px
}

.abt-auth .pg-cap .img-frame {
    position: relative;
    display: inline-block;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 8px 60px 1px #ae519524
}

.abt-auth .pg-cap .img-frame img {
    display: block;
    width: 100%;
    max-width: 820px;
    aspect-ratio: 16/9;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.08);
    border-radius: 7px
}

.abt-auth .pg-cap .img-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #ae51951f 0%, #bc9acb14 50%, transparent 100%);
    border-radius: 7px;
    pointer-events: none
}

.abt-auth .bio-strip {
    background: #F4EEF3;
    padding: 80px 24px;
    position: relative
}

.abt-auth .bio-strip .tri-div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0
}

.abt-auth .bio-strip .tri-div svg {
    display: block;
    width: 100%
}

.abt-auth .bio-strip .bio-inner {
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start
}

.abt-auth .bio-strip .bio-side {
    position: sticky;
    top: 24px
}

.abt-auth .bio-strip .bio-side .portrait {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 7px;
    box-shadow: 0 6px 14px 1px #ae519514;
    filter: brightness(0.92);
    transition: filter .18s ease-out
}

.abt-auth .bio-strip .bio-side .portrait:hover {
    filter: brightness(1.04)
}

.abt-auth .bio-strip .bio-side .name-card {
    margin-top: 24px;
    padding: 24px;
    background: #fff;
    border-radius: 7px;
    box-shadow: inset 0 1px 3px 1px #ae51950d 0 1px 3px 1px #ae51950d
}

.abt-auth .bio-strip .bio-side .name-card h2 {
    font-size: 30px;
    line-height: 1.1;
    color: #1a1118;
    margin: 0 0 8px
}

.abt-auth .bio-strip .bio-side .name-card .role-tag {
    font-size: 16px;
    color: #AE5195;
    display: flex;
    align-items: center;
    gap: 8px
}

.abt-auth .bio-strip .bio-side .name-card .role-tag i {
    font-size: 14px
}

.abt-auth .bio-strip .bio-main .ov-line {
    width: 40px;
    height: 2px;
    background: #AE5195;
    margin-bottom: 8px
}

.abt-auth .bio-strip .bio-main .sec-label {
    font-size: 16px;
    color: #AE5195;
    letter-spacing: .1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 24px
}

.abt-auth .bio-strip .bio-main h3 {
    font-size: 30px;
    line-height: 1.1;
    color: #1a1118;
    margin: 0 0 24px
}

.abt-auth .bio-strip .bio-main .bio-text {
    font-size: 16px;
    line-height: 1.75;
    color: #2e1f2a;
    margin: 0 0 24px
}

.abt-auth .bio-strip .bio-main .bio-text:last-child {
    margin-bottom: 0
}

.abt-auth .dance-vals {
    background: #fff;
    padding: 80px 24px;
    position: relative
}

.abt-auth .dance-vals .vals-inner {
    max-width: 1170px;
    margin: 0 auto
}

.abt-auth .dance-vals .vals-head {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 40px
}

.abt-auth .dance-vals .vals-head .head-txt {
    flex: 1
}

.abt-auth .dance-vals .vals-head .head-img {
    flex: 0 0 38%
}

.abt-auth .dance-vals .vals-head .head-img img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 7px;
    filter: brightness(0.9);
    box-shadow: 0 6px 14px 1px #ae519514;
    transition: filter .15s ease-out
}

.abt-auth .dance-vals .vals-head .head-img img:hover {
    filter: brightness(1.05)
}

.abt-auth .dance-vals .ov-line {
    width: 40px;
    height: 2px;
    background: #AE5195;
    margin-bottom: 8px
}

.abt-auth .dance-vals .sec-label {
    font-size: 16px;
    color: #AE5195;
    letter-spacing: .1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 24px
}

.abt-auth .dance-vals h3 {
    font-size: 42px;
    line-height: 1.1;
    color: #1a1118;
    margin: 0 0 24px
}

.abt-auth .dance-vals .lead-p {
    font-size: 16px;
    line-height: 1.75;
    color: #2e1f2a;
    margin: 0
}

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

.abt-auth .dance-vals .val-item {
    background: #F4EEF3;
    border-radius: 7px;
    padding: 40px 24px;
    box-shadow: inset 0 1px 3px 1px #ae51950d;
    position: relative;
    overflow: hidden
}

.abt-auth .dance-vals .val-item .item-curve {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 42px;
    background: linear-gradient(120deg, #AE5195 0%, #BC9ACB 100%);
    opacity: .12;
    pointer-events: none
}

.abt-auth .dance-vals .val-item .val-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(120deg, #AE5195 0%, #BC9ACB 100%);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px
}

.abt-auth .dance-vals .val-item .val-icon i {
    color: #fff;
    font-size: 18px
}

.abt-auth .dance-vals .val-item h4 {
    font-size: 16px;
    line-height: 1.1;
    color: #1a1118;
    margin: 0 0 8px;
    font-weight: 700
}

.abt-auth .dance-vals .val-item p {
    font-size: 16px;
    line-height: 1.75;
    color: #3d2b38;
    margin: 0
}

.abt-auth .dance-vals .val-item {
    transition: box-shadow .18s ease-out, transform .15s ease-out
}

.abt-auth .dance-vals .val-item:hover {
    box-shadow: 0 6px 14px 1px #ae519514;
    transform: scale(1.025)
}

.abt-auth .contact-reach {
    background: linear-gradient(155deg, #AE5195 0%, #BC9ACB 55%, #F4EEF3 100%);
    padding: 80px 24px;
    position: relative;
    overflow: hidden
}

.abt-auth .contact-reach .curve-deco {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    border: 2px solid #ffffff2e;
    border-radius: 42px;
    transform: rotate(20deg);
    pointer-events: none
}

.abt-auth .contact-reach .curve-deco2 {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 180px;
    height: 180px;
    border: 2px solid #ffffff1f;
    border-radius: 42px;
    transform: rotate(-15deg);
    pointer-events: none
}

.abt-auth .contact-reach .reach-inner {
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1
}

.abt-auth .contact-reach .reach-txt .ov-line {
    width: 40px;
    height: 2px;
    background: #fff9;
    margin-bottom: 8px
}

.abt-auth .contact-reach .reach-txt .sec-label {
    font-size: 16px;
    color: #fffc;
    letter-spacing: .1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 24px
}

.abt-auth .contact-reach .reach-txt h3 {
    font-size: 42px;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 24px
}

.abt-auth .contact-reach .reach-txt p {
    font-size: 16px;
    line-height: 1.75;
    color: #ffffffe6;
    margin: 0
}

.abt-auth .contact-reach .reach-img img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 7px;
    filter: brightness(0.88) saturate(0.9);
    box-shadow: 0 8px 60px 1px #ae519524;
    transition: filter .2s ease-out
}

.abt-auth .contact-reach .reach-img img:hover {
    filter: brightness(1.02) saturate(1)
}

.abt-auth .contact-reach .email-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 24px 40px;
    background: #fff;
    color: #AE5195;
    font-size: 16px;
    font-weight: 700;
    border-radius: 42px;
    text-decoration: none;
    box-shadow: 0 6px 14px 1px #ae519514;
    transition: background .18s ease-out, color .18s ease-out, box-shadow .15s ease
}

.abt-auth .contact-reach .email-link:hover {
    background: #1a1118;
    color: #fff;
    box-shadow: 0 8px 60px 1px #ae519524
}

.abt-auth .contact-reach .email-link i {
    font-size: 16px
}

@media (max-width: 992px) {
    .abt-auth .pg-cap h1 {
        font-size: 42px
    }

    .abt-auth .bio-strip .bio-inner {
        grid-template-columns: 1fr
    }

    .abt-auth .bio-strip .bio-side {
        position: static
    }

    .abt-auth .dance-vals .vals-head {
        flex-direction: column
    }

    .abt-auth .dance-vals .vals-head .head-img {
        flex: unset;
        width: 100%
    }

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

    .abt-auth .contact-reach .reach-inner {
        grid-template-columns: 1fr
    }

    .abt-auth .dance-vals h3 {
        font-size: 30px
    }

    .abt-auth .contact-reach .reach-txt h3 {
        font-size: 30px
    }
}

@media (max-width: 576px) {
    .abt-auth .pg-cap h1 {
        font-size: 30px
    }

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

    .abt-auth .contact-reach .email-link {
        padding: 24px
    }

    .abt-auth .bio-strip {
        padding: 40px 24px
    }

    .abt-auth .dance-vals {
        padding: 40px 24px
    }

    .abt-auth .contact-reach {
        padding: 40px 24px
    }

    .abt-auth .pg-cap {
        padding: 40px 24px
    }
}

@media (min-width: 576px) {

    .abt-auth .dance-vals .val-item,
    .abt-auth .bio-strip .bio-side .portrait,
    .abt-auth .contact-reach .reach-img img,
    .abt-auth .pg-cap .img-frame img {
        transition: filter .18s ease-out
    }
}

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

.gds-pg .mx-w {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px
}

.gds-pg .ttl-blk {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative
}

.gds-pg .ttl-blk .row {
    align-items: flex-start
}

.gds-pg .ttl-col {
    position: relative;
    z-index: 1
}

.gds-pg .ttl-overline {
    display: block;
    width: 32px;
    height: 2px;
    background: #AE5195;
    margin-bottom: 24px
}

.gds-pg .ttl-label {
    font-size: 16px;
    line-height: 1.75;
    color: #AE5195;
    text-transform: uppercase;
    letter-spacing: .12em;
    display: block;
    margin-bottom: 8px
}

.gds-pg .ttl-h1 {
    font-size: 58px;
    line-height: 1.1;
    color: #1a0d16;
    margin: 0 0 24px
}

.gds-pg .ttl-h1 span {
    color: #AE5195
}

.gds-pg .ttl-desc {
    font-size: 16px;
    line-height: 1.75;
    color: #3d2235;
    max-width: 480px
}

.gds-pg .img-col {
    position: relative
}

.gds-pg .img-frame {
    position: relative;
    border-radius: 7px;
    overflow: hidden;
    aspect-ratio: 16/9
}

.gds-pg .img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .18;
    display: block
}

.gds-pg .img-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, #fff 0%, #F4EEF3 45%, #BC9ACB 100%);
    mix-blend-mode: multiply;
    pointer-events: none
}

.gds-pg .corner-br {
    position: absolute;
    width: 28px;
    height: 28px;
    pointer-events: none
}

.gds-pg .corner-br.tl {
    top: -8px;
    left: -8px;
    border-top: 2px solid #AE5195;
    border-left: 2px solid #AE5195;
    border-radius: 2px 0 0 0
}

.gds-pg .corner-br.br {
    bottom: -8px;
    right: -8px;
    border-bottom: 2px solid #AE5195;
    border-right: 2px solid #AE5195;
    border-radius: 0 0 2px 0
}

.gds-pg .outlined-shape {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    height: 320px;
    border: 2px solid #BC9ACB;
    border-radius: 42px;
    opacity: .18;
    pointer-events: none;
    z-index: 0
}

.gds-pg .divider-dbl {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    padding: 0
}

.gds-pg .divider-dbl span {
    display: block;
    height: 1px;
    background: #BC9ACB
}

.gds-pg .divider-dbl span:first-child {
    background: #AE5195
}

.gds-pg .guides-list-sec {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #F4EEF3;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 32px), 0 100%)
}

.gds-pg .sec-overline {
    display: block;
    width: 32px;
    height: 2px;
    background: #AE5195;
    margin-bottom: 8px
}

.gds-pg .sec-label {
    font-size: 16px;
    line-height: 1.75;
    color: #AE5195;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 24px;
    display: block
}

.gds-pg .sec-h2 {
    font-size: 42px;
    line-height: 1.1;
    color: #1a0d16;
    margin: 0 0 40px
}

.gds-pg .guides-grid {
    display: grid;
    grid-template-columns: 2fr 1.3fr 1fr;
    gap: 24px;
    align-items: start
}

.gds-pg .gd-card {
    background: #fff;
    border-radius: 7px;
    padding: 24px;
    box-shadow: 0 1px 3px 1px #ae51950d 0 6px 14px 1px #ae519514;
    box-sizing: border-box;
    transition: box-shadow .15s ease-out, transform .15s ease-out;
    position: relative
}

.gds-pg .gd-card:hover {
    box-shadow: 0 1px 3px 1px #ae519514 0 6px 14px 1px #ae519524 0 8px 60px 1px #ae519524;
    transform: translateY(-2px)
}

.gds-pg .gd-card .card-num {
    font-size: 42px;
    line-height: 1.1;
    color: #F4EEF3;
    font-weight: 700;
    position: absolute;
    top: 16px;
    right: 16px;
    pointer-events: none;
    user-select: none
}

.gds-pg .gd-card .card-tag {
    display: inline-block;
    font-size: 16px;
    line-height: 1.75;
    color: #AE5195;
    background: #F4EEF3;
    border-radius: 42px;
    padding: 0 8px;
    margin-bottom: 8px
}

.gds-pg .gd-card h4 {
    font-size: 30px;
    line-height: 1.1;
    color: #1a0d16;
    margin: 0 0 8px
}

.gds-pg .gd-card.sm h4 {
    font-size: 16px;
    line-height: 1.75
}

.gds-pg .gd-card p {
    font-size: 16px;
    line-height: 1.75;
    color: #3d2235;
    margin: 0 0 24px
}

.gds-pg .gd-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px
}

.gds-pg .gd-card ul li {
    font-size: 16px;
    line-height: 1.75;
    color: #3d2235;
    padding-left: 16px;
    position: relative
}

.gds-pg .gd-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 42px;
    background: #AE5195
}

.gds-pg .btn-acc {
    display: inline-block;
    font-size: 16px;
    line-height: 1.75;
    color: #fff;
    background: #AE5195;
    border-radius: 7px;
    padding: 8px 24px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .18s ease, box-shadow .18s ease
}

.gds-pg .btn-acc:hover {
    background: #8f3d7a;
    box-shadow: 0 6px 14px 1px #ae51952e
}

.gds-pg .btn-ghost {
    display: inline-block;
    font-size: 16px;
    line-height: 1.75;
    color: #AE5195;
    background: transparent;
    border: 1px solid #AE5195;
    border-radius: 7px;
    padding: 8px 24px;
    text-decoration: none;
    transition: background .12s ease-out, color .12s ease-out
}

.gds-pg .btn-ghost:hover {
    background: #AE5195;
    color: #fff
}

.gds-pg .side-cards {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.gds-pg .howto-sec {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #fff;
    position: relative
}

.gds-pg .howto-sec .outlined-circ {
    position: absolute;
    left: -60px;
    bottom: 40px;
    width: 260px;
    height: 260px;
    border: 2px solid #BC9ACB;
    border-radius: 42px;
    opacity: .12;
    pointer-events: none
}

.gds-pg .howto-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start
}

.gds-pg .howto-left h2 {
    font-size: 42px;
    line-height: 1.1;
    color: #1a0d16;
    margin: 0 0 24px
}

.gds-pg .howto-left p {
    font-size: 16px;
    line-height: 1.75;
    color: #3d2235;
    margin: 0 0 24px
}

.gds-pg .howto-left .support-col {
    font-size: 16px;
    line-height: 1.75;
    color: #AE5195;
    border-left: none;
    padding: 8px 0 8px 24px;
    border-left: 0;
    position: relative
}

.gds-pg .howto-left .support-col::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #AE5195 0%, #BC9ACB 60%, #F4EEF3 100%);
    border-radius: 2px
}

.gds-pg .steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.gds-pg .step-item {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    padding: 24px;
    border-radius: 7px;
    border: 1px solid #F4EEF3;
    background: #fff;
    box-shadow: 0 1px 3px 1px #ae51950d;
    transition: border-color .15s ease-out;
    overflow: hidden
}

.gds-pg .step-item:hover {
    border-color: #BC9ACB
}

.gds-pg .step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 7px;
    background: linear-gradient(135deg, #AE5195 0%, #BC9ACB 60%, #F4EEF3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1.1;
    color: #fff;
    font-weight: 700
}

.gds-pg .step-body h5 {
    font-size: 16px;
    line-height: 1.75;
    color: #1a0d16;
    margin: 0 0 8px;
    font-weight: 700
}

.gds-pg .step-body p {
    font-size: 16px;
    line-height: 1.75;
    color: #3d2235;
    margin: 0
}

.gds-pg .step-item:nth-child(1) {
    animation: fadeUp .18s ease-out both
}

.gds-pg .step-item:nth-child(2) {
    animation: fadeUp .22s ease-out .06s both
}

.gds-pg .step-item:nth-child(3) {
    animation: fadeUp .22s ease-out .12s both
}

.gds-pg .step-item:nth-child(4) {
    animation: fadeUp .22s ease-out .18s both
}

.gds-pg .step-item:nth-child(5) {
    animation: fadeUp .22s ease-out .24s both
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px)
    }

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

.gds-pg .clip-reveal-wrap {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 7px
}

.gds-pg .clip-reveal-inner {
    clip-path: inset(0 100% 0 0);
    transition: clip-path .2s ease-out;
    position: absolute;
    inset: 0;
    background: #AE5195;
    border-radius: 7px;
    pointer-events: none
}

.gds-pg .clip-reveal-wrap:hover .clip-reveal-inner {
    clip-path: inset(0 0% 0 0)
}

.gds-pg .clip-reveal-wrap:hover .btn-ghost {
    color: #fff;
    border-color: #AE5195;
    position: relative;
    z-index: 1
}

@media (max-width: 992px) {
    .gds-pg .guides-grid {
        grid-template-columns: 1fr 1fr
    }

    .gds-pg .gd-card:first-child {
        grid-column: 1 / -1
    }

    .gds-pg .side-cards {
        flex-direction: row
    }

    .gds-pg .howto-layout {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .gds-pg .ttl-h1 {
        font-size: 42px
    }
}

@media (max-width: 576px) {
    .gds-pg .guides-grid {
        grid-template-columns: 1fr
    }

    .gds-pg .gd-card:first-child {
        grid-column: auto
    }

    .gds-pg .side-cards {
        flex-direction: column
    }

    .gds-pg .ttl-h1 {
        font-size: 30px
    }

    .gds-pg .sec-h2 {
        font-size: 30px
    }

    .gds-pg .howto-left h2 {
        font-size: 30px
    }

    .gds-pg .ttl-blk {
        padding-top: 40px;
        padding-bottom: 40px
    }

    .gds-pg .guides-list-sec {
        padding-top: 40px;
        padding-bottom: 40px
    }

    .gds-pg .howto-sec {
        padding-top: 40px;
        padding-bottom: 40px
    }
}

.ptl {
    overflow-x: hidden
}

.ptl .pg-wrap {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px
}

.ptl .divider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px
}

.ptl .divider span {
    height: 1px;
    flex: 1;
    background: #BC9ACB;
    opacity: .35
}

.ptl .divider em {
    display: block;
    width: 48px;
    height: 2px;
    background: #AE5195;
    border-radius: 2px;
    flex-shrink: 0
}

.ptl .tb {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative
}

.ptl .tb-inner {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
    position: relative;
    z-index: 1
}

.ptl .tb-strip {
    width: 220px;
    flex-shrink: 0;
    border-radius: 7px;
    overflow: hidden;
    position: relative
}

.ptl .tb-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.7) brightness(0.88) hue-rotate(0deg) contrast(1.08)
}

.ptl .tb-blob {
    position: absolute;
    border-radius: 42px;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0
}

.ptl .tb-blob.b1 {
    width: 340px;
    height: 200px;
    background: #ae519521;
    top: -40px;
    left: 160px
}

.ptl .tb-blob.b2 {
    width: 260px;
    height: 180px;
    background: #bc9acb2e;
    bottom: -24px;
    right: 80px
}

.ptl .tb-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px
}

.ptl .tb-over {
    display: block;
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #AE5195;
    margin-bottom: 8px
}

.ptl .tb-h1 {
    font-size: 58px;
    line-height: 1.1;
    color: #1e1124;
    margin: 0
}

.ptl .tb-desc {
    font-size: 16px;
    line-height: 1.75;
    color: #3b2448;
    max-width: 560px;
    margin: 0
}

.ptl .tb-links {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap
}

.ptl .btn-pri {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #AE5195;
    color: #fff;
    border-radius: 7px;
    font-size: 16px;
    line-height: 1.1;
    text-decoration: none;
    border: 2px solid #AE5195;
    transition: background .18s ease-out, color .18s ease-out, box-shadow .15s ease-out
}

.ptl .btn-pri:hover {
    background: #8a3d76;
    border-color: #8a3d76;
    box-shadow: 0 6px 14px 1px #ae51952e
}

.ptl .btn-pri:active {
    background: #fff;
    color: #AE5195
}

.ptl .btn-sec {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: #AE5195;
    border-radius: 7px;
    font-size: 16px;
    line-height: 1.1;
    text-decoration: none;
    border: 2px solid #BC9ACB;
    transition: border-color .14s ease, background .14s ease
}

.ptl .btn-sec:hover {
    border-color: #AE5195;
    background: #F4EEF3
}

.ptl .btn-sec:active {
    background: #AE5195;
    color: #fff
}

.ptl .abt {
    background: linear-gradient(155deg, #fff 0%, #F4EEF3 55%, #e8d9f0 100%);
    padding-top: 80px;
    padding-bottom: 80px
}

.ptl .abt-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start
}

.ptl .abt-over {
    display: block;
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #AE5195;
    margin-bottom: 8px
}

.ptl .abt-h2 {
    font-size: 42px;
    line-height: 1.1;
    color: #1e1124;
    margin: 0 0 24px
}

.ptl .abt-accent {
    width: 40px;
    height: 3px;
    background: #AE5195;
    border-radius: 2px;
    margin-bottom: 24px
}

.ptl .abt-p {
    font-size: 16px;
    line-height: 1.75;
    color: #3b2448;
    margin: 0
}

.ptl .abt-side {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ptl .abt-stat {
    background: #fff;
    border-radius: 7px;
    padding: 24px;
    box-shadow: 0 1px 3px 1px #ae51950d 0 6px 14px 1px #ae519514;
    border-top: 3px solid #AE5195
}

.ptl .abt-stat-n {
    font-size: 42px;
    line-height: 1.1;
    color: #AE5195;
    display: block
}

.ptl .abt-stat-l {
    font-size: 16px;
    line-height: 1.75;
    color: #3b2448
}

.ptl .posts-sec {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #fff
}

.ptl .posts-h2 {
    font-size: 42px;
    line-height: 1.1;
    color: #1e1124;
    margin: 0 0 8px
}

.ptl .posts-over {
    display: block;
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #AE5195;
    margin-bottom: 8px
}

.ptl .posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px
}

.ptl .post-card {
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 1px 3px 1px #ae51950d 0 6px 14px 1px #ae519514;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow .18s ease-out, transform .15s ease-out
}

.ptl .post-card:hover {
    box-shadow: 0 8px 60px 1px #ae519524;
    transform: translateY(-2px) scale(1.01)
}

.ptl .post-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden
}

.ptl .post-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.ptl .post-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1
}

.ptl .post-tag {
    display: inline-block;
    font-size: 16px;
    line-height: 1.1;
    color: #AE5195;
    background: #F4EEF3;
    border-radius: 42px;
    padding: 4px 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 16px;
    font-size: 16px
}

.ptl .post-card-h {
    font-size: 16px;
    line-height: 1.75;
    color: #1e1124;
    margin: 0;
    font-weight: 700
}

.ptl .post-card-sub {
    font-size: 16px;
    line-height: 1.75;
    color: #5a3d6e;
    margin: 0
}

.ptl .post-card-desc {
    font-size: 16px;
    line-height: 1.75;
    color: #3b2448;
    margin: 0
}

.ptl .post-meta {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 8px
}

.ptl .post-meta span {
    font-size: 16px;
    line-height: 1.1;
    color: #7a5590;
    display: flex;
    align-items: center;
    gap: 4px
}

.ptl .post-read-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #AE5195;
    font-size: 16px;
    line-height: 1.1;
    text-decoration: none;
    margin-top: 8px;
    padding: 4px 0;
    position: relative
}

.ptl .post-read-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 1px;
    background: #AE5195;
    transition: left .16s ease-out, right .16s ease-out
}

.ptl .post-read-link:hover::after {
    left: 0;
    right: 0
}

.ptl .terr {
    padding-top: 80px;
    padding-bottom: 80px;
    background: radial-gradient(ellipse at 50% 40%, #F4EEF3 30%, #d8c4e8 100%)
}

.ptl .terr-h2 {
    font-size: 42px;
    line-height: 1.1;
    color: #1e1124;
    margin: 0 0 8px
}

.ptl .terr-over {
    display: block;
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #AE5195;
    margin-bottom: 8px
}

.ptl .terr-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px
}

.ptl .terr-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 24px;
    align-items: start;
    background: #fff;
    border-radius: 7px;
    padding: 24px;
    box-shadow: 0 1px 3px 1px #ae51950d;
    position: relative;
    transition: box-shadow .16s ease-out
}

.ptl .terr-item:hover {
    box-shadow: 0 6px 14px 1px #ae51951f
}

.ptl .terr-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 7px;
    border: 2px solid transparent;
    transition: border-color .16s ease-out;
    pointer-events: none
}

.ptl .terr-item:hover::before {
    border-color: #BC9ACB
}

.ptl .terr-icon {
    width: 56px;
    height: 56px;
    border-radius: 7px;
    background: #F4EEF3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.ptl .terr-icon i {
    font-size: 24px;
    color: #AE5195
}

.ptl .terr-body h4 {
    font-size: 16px;
    line-height: 1.75;
    color: #1e1124;
    margin: 0 0 8px;
    font-weight: 700
}

.ptl .terr-body p {
    font-size: 16px;
    line-height: 1.75;
    color: #3b2448;
    margin: 0
}

.ptl .terr-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #AE5195;
    font-size: 16px;
    line-height: 1.1;
    text-decoration: none;
    margin-top: 8px;
    position: relative
}

.ptl .terr-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    right: 50%;
    height: 1px;
    background: #AE5195;
    transition: left .14s ease, right .14s ease
}

.ptl .terr-link:hover::after {
    left: 0;
    right: 0
}

.ptl .pick {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #1e1124
}

.ptl .pick-over {
    display: block;
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #BC9ACB;
    margin-bottom: 8px
}

.ptl .pick-h2 {
    font-size: 42px;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 40px
}

.ptl .pick-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.ptl .pick-card {
    background: #ffffff0d;
    border-radius: 7px;
    padding: 24px;
    border: 1px solid #bc9acb33;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: background .18s ease-out, border-color .18s ease-out
}

.ptl .pick-card:hover {
    background: #ae51951f;
    border-color: #bc9acb80
}

.ptl .pick-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 7px;
    overflow: hidden;
    margin-bottom: 8px
}

.ptl .pick-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.ptl .pick-label {
    font-size: 16px;
    line-height: 1.1;
    color: #BC9ACB;
    letter-spacing: .08em;
    text-transform: uppercase
}

.ptl .pick-card h4 {
    font-size: 16px;
    line-height: 1.75;
    color: #fff;
    margin: 0;
    font-weight: 700
}

.ptl .pick-card p {
    font-size: 16px;
    line-height: 1.75;
    color: #ffffffb3;
    margin: 0
}

.ptl .pick-card a {
    color: #BC9ACB;
    font-size: 16px;
    line-height: 1.1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    position: relative
}

.ptl .pick-card a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    right: 50%;
    height: 1px;
    background: #BC9ACB;
    transition: left .14s ease, right .14s ease
}

.ptl .pick-card a:hover::after {
    left: 0;
    right: 0
}

.ptl .arcs {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #fff
}

.ptl .arcs-over {
    display: block;
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #AE5195;
    margin-bottom: 8px
}

.ptl .arcs-h2 {
    font-size: 42px;
    line-height: 1.1;
    color: #1e1124;
    margin: 0 0 40px
}

.ptl .arcs-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px
}

.ptl .arc-item {
    border-radius: 7px;
    overflow: hidden;
    position: relative
}

.ptl .arc-img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden
}

.ptl .arc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .2s ease-out
}

.ptl .arc-item:hover .arc-img img {
    transform: scale(1.04)
}

.ptl .arc-body {
    padding: 24px;
    background: #F4EEF3;
    border-radius: 0 0 7px 7px
}

.ptl .arc-num {
    font-size: 42px;
    line-height: 1.1;
    color: #BC9ACB;
    font-weight: 700;
    display: block;
    margin-bottom: 8px
}

.ptl .arc-body h4 {
    font-size: 16px;
    line-height: 1.75;
    color: #1e1124;
    margin: 0 0 8px;
    font-weight: 700
}

.ptl .arc-body p {
    font-size: 16px;
    line-height: 1.75;
    color: #3b2448;
    margin: 0
}

.ptl .sub {
    padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(155deg, #F4EEF3 0%, #e8d9f0 60%, #BC9ACB 100%)
}

.ptl .sub-inner {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center
}

.ptl .sub-over {
    display: block;
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #AE5195;
    margin-bottom: 8px
}

.ptl .sub-h2 {
    font-size: 42px;
    line-height: 1.1;
    color: #1e1124;
    margin: 0 0 24px
}

.ptl .sub-p {
    font-size: 16px;
    line-height: 1.75;
    color: #3b2448;
    margin: 0 0 40px
}

.ptl .sub-form {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center
}

.ptl .sub-field {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 2px solid #BC9ACB;
    border-radius: 7px;
    padding: 0 16px;
    flex: 1;
    min-width: 220px;
    transition: border-color .14s ease
}

.ptl .sub-field:focus-within {
    border-color: #AE5195
}

.ptl .sub-field i {
    color: #BC9ACB;
    font-size: 16px
}

.ptl .sub-field input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    line-height: 1.75;
    color: #1e1124;
    padding: 12px 0;
    width: 100%
}

.ptl .sub-field input::placeholder {
    color: #9a7aaa
}

.ptl .sub-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: #AE5195;
    color: #fff;
    border-radius: 7px;
    font-size: 16px;
    line-height: 1.1;
    border: 2px solid #AE5195;
    cursor: pointer;
    transition: background .18s ease-out, box-shadow .15s ease-out
}

.ptl .sub-btn:hover {
    background: #8a3d76;
    border-color: #8a3d76;
    box-shadow: 0 6px 14px 1px #ae51952e
}

.ptl .sub-btn:active {
    background: #fff;
    color: #AE5195
}

.ptl .sub-note {
    font-size: 16px;
    line-height: 1.75;
    color: #5a3d6e;
    margin-top: 24px
}

@media (max-width: 992px) {
    .ptl .tb-h1 {
        font-size: 42px
    }

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

    .ptl .pick-grid {
        grid-template-columns: 1fr
    }

    .ptl .arcs-row {
        grid-template-columns: 1fr 1fr
    }

    .ptl .abt-grid {
        grid-template-columns: 1fr
    }

    .ptl .terr-list {
        gap: 24px
    }
}

@media (max-width: 576px) {
    .ptl .tb-inner {
        flex-direction: column
    }

    .ptl .tb-strip {
        width: 100%;
        height: 180px
    }

    .ptl .tb-h1 {
        font-size: 30px
    }

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

    .ptl .arcs-row {
        grid-template-columns: 1fr
    }

    .ptl .pick-grid {
        grid-template-columns: 1fr
    }

    .ptl .abt-h2,
    .ptl .terr-h2,
    .ptl .pick-h2,
    .ptl .arcs-h2,
    .ptl .sub-h2 {
        font-size: 30px
    }

    .ptl .sub-form {
        flex-direction: column
    }

    .ptl .sub-field {
        min-width: unset
    }

    .ptl .tb {
        padding-top: 40px;
        padding-bottom: 40px
    }

    .ptl .abt,
    .ptl .posts-sec,
    .ptl .terr,
    .ptl .pick,
    .ptl .arcs,
    .ptl .sub {
        padding-top: 40px;
        padding-bottom: 40px
    }
}

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

.blg-root *,
.blg-root ::before,
.blg-root ::after {
    box-sizing: border-box
}

@keyframes blg-sweep {
    0% {
        background-position: -200% center
    }

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

.blg-band {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px
}

.blg-title-strip {
    padding: 40px 0;
    background: #fff;
    position: relative
}

.blg-title-strip::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(#ae51950a 1px, transparent 1px), linear-gradient(90deg, #ae51950a 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none
}

.blg-title-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1
}

.blg-title-img-col {
    flex: 0 0 220px;
    width: 220px
}

.blg-title-img-wrap {
    width: 220px;
    height: 138px;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 1px 3px 1px #ae51950d 0 6px 14px 1px #ae519514
}

.blg-title-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px) brightness(0.92);
    transform: scale(1.08)
}

.blg-title-text-col {
    flex: 1
}

.blg-overline {
    display: block;
    width: 32px;
    height: 2px;
    background: #AE5195;
    margin-bottom: 8px
}

.blg-title-num {
    font-size: 58px;
    line-height: 1.1;
    color: #AE5195;
    font-weight: 700;
    display: inline
}

.blg-title-h1 {
    font-size: 42px;
    line-height: 1.1;
    color: #1b0d17;
    font-weight: 700;
    margin: 0 0 8px;
    background: linear-gradient(90deg, #AE5195 0%, #BC9ACB 40%, #AE5195 60%, #1b0d17 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: blg-sweep 2.2s ease-out forwards
}

.blg-title-sub {
    font-size: 16px;
    line-height: 1.75;
    color: #4a2a40;
    margin: 0
}

.blg-deco-strokes {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    pointer-events: none
}

.blg-deco-strokes span {
    display: block;
    height: 2px;
    background: #ae51952e;
    border-radius: 2px
}

.blg-posts-sec {
    padding: 80px 0;
    background: #F4EEF3
}

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

.blg-card {
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 1px 3px 1px #ae51950d 0 6px 14px 1px #ae519514;
    box-shadow: inset 0 1px 3px #bc9acb12 0 6px 14px 1px #ae519514;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .18s ease-out, transform .15s ease-out
}

.blg-card:hover {
    box-shadow: 0 8px 60px 1px #ae519524;
    transform: translateY(-2px) scale(1.01)
}

.blg-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden
}

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

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

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

.blg-card-tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px
}

.blg-tag {
    font-size: 16px;
    line-height: 1.1;
    color: #AE5195;
    background: #F4EEF3;
    border: 1px solid #ae519533;
    border-radius: 42px;
    padding: 2px 8px;
    font-weight: 600
}

.blg-tag-cat {
    font-size: 16px;
    line-height: 1.1;
    color: #BC9ACB;
    background: transparent;
    border: 1px solid #bc9acb59;
    border-radius: 42px;
    padding: 2px 8px
}

.blg-card-h {
    font-size: 16px;
    line-height: 1.75;
    color: #1b0d17;
    font-weight: 700;
    margin: 0
}

.blg-card-sub {
    font-size: 16px;
    line-height: 1.75;
    color: #4a2a40;
    margin: 0;
    font-style: italic
}

.blg-card-desc {
    font-size: 16px;
    line-height: 1.75;
    color: #3d2035;
    margin: 0;
    flex: 1
}

.blg-card-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #bc9acb40
}

.blg-meta-author {
    font-size: 16px;
    line-height: 1.1;
    color: #4a2a40;
    font-weight: 600
}

.blg-meta-sep {
    color: #ae51954d
}

.blg-meta-date {
    font-size: 16px;
    line-height: 1.1;
    color: #7a4a6a
}

.blg-meta-read {
    font-size: 16px;
    line-height: 1.1;
    color: #7a4a6a;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px
}

.blg-meta-likes {
    margin-left: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    color: #AE5195;
    font-size: 16px;
    line-height: 1.1
}

.blg-card-lnk {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    color: #AE5195;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 600;
    text-decoration: none;
    margin-top: 8px;
    background-image: linear-gradient(90deg, #ae51951f 0%, #bc9acb1a 100%);
    background-size: 0 100%;
    background-repeat: no-repeat;
    background-position: center;
    padding: 4px 0;
    transition: background-size .18s ease-out, color .15s ease
}

.blg-card-lnk:hover {
    background-size: 100% 100%;
    color: #8a3a75
}

.blg-accent-sec {
    background: #AE5195;
    padding: 80px 0;
    position: relative;
    overflow: hidden
}

.blg-accent-sec::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 280px;
    height: 280px;
    border-radius: 42px;
    background: #ffffff0f;
    pointer-events: none
}

.blg-accent-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 80px
}

.blg-accent-left {
    flex: 1
}

.blg-accent-overline {
    display: block;
    width: 32px;
    height: 2px;
    background: #ffffff80;
    margin-bottom: 8px
}

.blg-accent-h2 {
    font-size: 30px;
    line-height: 1.1;
    color: #fff;
    font-weight: 700;
    margin: 0 0 24px
}

.blg-accent-p {
    font-size: 16px;
    line-height: 1.75;
    color: #ffffffe0;
    margin: 0 0 24px
}

.blg-btn-ghost {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    border-radius: 7px;
    border: 2px solid #ffffffb3;
    color: #fff;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    cursor: pointer;
    transition: background .18s ease, border-color .15s ease
}

.blg-btn-ghost:hover {
    background: #ffffff26;
    border-color: #fff
}

.blg-accent-right {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px
}

.blg-donut-wrap {
    position: relative;
    width: 160px;
    height: 160px
}

.blg-donut-wrap svg {
    width: 160px;
    height: 160px
}

.blg-donut-label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.blg-donut-num {
    font-size: 30px;
    line-height: 1.1;
    color: #fff;
    font-weight: 700
}

.blg-donut-sub {
    font-size: 16px;
    line-height: 1.1;
    color: #ffffffbf;
    text-align: center
}

.blg-arrow-pair {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    color: #fff
}

.blg-arrow-num {
    font-size: 30px;
    line-height: 1.1;
    font-weight: 700
}

.blg-arrow-svg {
    width: 40px;
    height: 16px
}

.blg-arrow-num2 {
    font-size: 30px;
    line-height: 1.1;
    font-weight: 700;
    color: #ffffffa6
}

.blg-nl-sec {
    padding: 80px 0;
    background: #fff
}

.blg-nl-inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start
}

.blg-nl-overline {
    display: block;
    width: 32px;
    height: 2px;
    background: #AE5195;
    margin-bottom: 8px
}

.blg-nl-h2 {
    font-size: 30px;
    line-height: 1.1;
    color: #1b0d17;
    font-weight: 700;
    margin: 0 0 24px
}

.blg-nl-p {
    font-size: 16px;
    line-height: 1.75;
    color: #3d2035;
    margin: 0 0 24px
}

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

.blg-field-wrap {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center
}

.blg-field-wrap .blg-field-icon {
    position: absolute;
    left: 12px;
    color: #BC9ACB;
    font-size: 16px;
    pointer-events: none
}

.blg-field {
    width: 100%;
    padding: 8px 8px 8px 36px;
    border: 1px solid #bc9acb80;
    border-radius: 7px;
    font-size: 16px;
    line-height: 1.75;
    color: #1b0d17;
    background: #fff;
    outline: none;
    transition: border-color .18s ease
}

.blg-field:focus {
    border-color: #AE5195;
    box-shadow: 0 1px 3px 1px #ae51950d
}

.blg-btn-primary {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 24px;
    border-radius: 7px;
    background: linear-gradient(135deg, #AE5195 0%, #BC9ACB 60%, #F4EEF3 100%);
    color: #fff;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s ease, box-shadow .18s ease-out
}

.blg-btn-primary:hover {
    background: linear-gradient(135deg, #8a3a75 0%, #AE5195 60%, #BC9ACB 100%);
    box-shadow: 0 6px 14px 1px #ae519514
}

.blg-nl-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    background: #F4EEF3;
    border-radius: 7px;
    box-shadow: inset 0 1px 3px #bc9acb1a
}

.blg-nl-side-h {
    font-size: 16px;
    line-height: 1.75;
    color: #1b0d17;
    font-weight: 700;
    margin: 0
}

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

.blg-nl-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    font-size: 16px;
    line-height: 1.75;
    color: #3d2035
}

.blg-nl-list li::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: #AE5195;
    flex-shrink: 0;
    margin-top: 8px
}

@media (max-width: 992px) {
    .blg-posts-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .blg-accent-inner {
        flex-direction: column;
        gap: 40px
    }

    .blg-accent-right {
        flex: none;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap
    }

    .blg-nl-inner {
        grid-template-columns: 1fr
    }

    .blg-title-inner {
        gap: 24px
    }

    .blg-title-img-col {
        flex: 0 0 160px;
        width: 160px
    }

    .blg-title-img-wrap {
        width: 160px;
        height: 100px
    }
}

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

    .blg-title-inner {
        flex-direction: column;
        gap: 24px
    }

    .blg-title-img-col {
        flex: none;
        width: 100%
    }

    .blg-title-img-wrap {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9
    }

    .blg-title-img-wrap img {
        width: 100%;
        height: 100%
    }

    .blg-title-h1 {
        font-size: 30px
    }

    .blg-accent-sec {
        padding: 40px 0
    }

    .blg-posts-sec {
        padding: 40px 0
    }

    .blg-nl-sec {
        padding: 40px 0
    }

    .blg-card-body {
        padding: 24px
    }
}

.success-pg {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background: #F4EEF3
}

.success-pg .success-card {
    background: #fff;
    border: 1px solid #BC9ACB;
    border-radius: 7px;
    box-shadow: 0 1px 3px 1px #ae51950d 0 6px 14px 1px #ae519514;
    max-width: 560px;
    width: 100%;
    padding: 40px;
    text-align: center
}

.success-pg .success-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 42px;
    background: #F4EEF3;
    border: 2px solid #AE5195
}

.success-pg .success-icon svg {
    display: block
}

.success-pg .success-overline {
    display: block;
    font-size: 16px;
    color: #AE5195;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 8px
}

.success-pg .success-heading {
    font-size: 30px;
    line-height: 1.1;
    color: #2a1a24;
    margin: 0 0 24px
}

.success-pg .success-body {
    font-size: 16px;
    line-height: 1.75;
    color: #3d2535;
    margin: 0 0 40px
}

.success-pg .success-link {
    display: inline-block;
    font-size: 16px;
    line-height: 1.1;
    color: #fff;
    background: #AE5195;
    border: none;
    border-radius: 7px;
    padding: 8px 24px;
    text-decoration: none;
    transition: background .18s ease-out, box-shadow .15s ease-out
}

@media (min-width: 576px) {
    .success-pg .success-link:hover {
        background: #8f3d7a;
        box-shadow: 0 6px 14px 1px #ae519524
    }
}

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