html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%
}

body {
    margin: 0;
    position: relative;
    word-break: break-word;
    overflow-wrap: anywhere;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #FFF;
    color: #1A1A1A;
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
}

img, svg {
    max-width: 100%;
    height: auto
}

.hdr-shell {
    background: linear-gradient(135deg, #25d3bb08 0%, #fdf7da14 100%);
    border-bottom: 1px solid #25d3bb1f;
    box-shadow: 0 2px 4px 0 #25d3bb0f;
    position: relative;
    z-index: 100
}

.hdr-mount {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 24px 12px;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.brand-hold {
    display: flex;
    align-items: center;
    gap: 12px
}

.brand-mark {
    width: 44px;
    height: 44px;
    background: #FFF;
    border-radius: 2px;
    box-shadow: 0 2px 4px 0 #25d3bb0f 0 0 0 1px #25d3bb26;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: box-shadow .12s ease-out, transform .1s ease-out
}

.brand-mark:hover {
    box-shadow: 0 5px 25px 0 #25d3bb14 0 0 0 1px #25d3bb40;
    transform: translateY(-1px)
}

.brand-mark:focus {
    outline: 2px solid #25D3BB;
    outline-offset: 2px
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block
}

.brand-label {
    font-size: 24px;
    font-weight: 700;
    color: #0D0D0D;
    line-height: 1.1;
    letter-spacing: -.02em
}

.nav-primary {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 12px;
    align-items: center
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 400;
    color: #2D2D2D;
    text-decoration: none;
    background: #FFF;
    border-radius: 20px;
    border: 1px solid #25d3bb1a;
    transition: background .1s ease-out, border-color .1s ease-out, color .1s ease-out, box-shadow .12s ease-out;
    position: relative;
    line-height: 1.1
}

.nav-link:hover {
    background: linear-gradient(135deg, #25d3bb14 0%, #fdf7da1f 100%);
    border-color: #25d3bb4d;
    color: #0D0D0D;
    box-shadow: 0 2px 4px 0 #25d3bb0f
}

.nav-link:focus {
    background: #0D0D0D;
    color: #FFF;
    border-color: #0D0D0D;
    outline: none
}

.nav-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.nav-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor
}

.nav-parent {
    position: relative
}

.nav-parent:hover .submenu-reveal,
.nav-parent:focus-within .submenu-reveal {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.submenu-reveal {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 220px;
    background: #FFF;
    border: 1px solid #25d3bb26;
    border-radius: 2px;
    box-shadow: 0 5px 25px 0 #25d3bb14;
    padding: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .12s ease-out, visibility .12s ease-out, transform .12s ease-out;
    z-index: 200
}

.submenu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 400;
    color: #2D2D2D;
    text-decoration: none;
    border-radius: 2px;
    transition: background .08s linear, color .08s linear;
    line-height: 1.5
}

.submenu-link:hover {
    background: linear-gradient(135deg, #25d3bb1f 0%, #fdf7da26 100%);
    color: #0D0D0D
}

.submenu-link:focus {
    background: #0D0D0D;
    color: #FFF;
    outline: none
}

.ftr-shell {
    background: linear-gradient(180deg, #fdf7da0d 0%, #25d3bb05 100%);
    border-top: 1px solid #25d3bb14;
    margin-top: 96px;
    padding: 48px 0 24px
}

.ftr-mount {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px
}

.ftr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 48px 24px;
    margin-bottom: 48px
}

.ftr-col-head {
    font-size: 15px;
    font-weight: 700;
    color: #0D0D0D;
    margin-bottom: 24px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: .05em
}

.ftr-nav {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ftr-link {
    font-size: 15px;
    font-weight: 400;
    color: #4D4D4D;
    text-decoration: none;
    transition: color .1s ease-out, padding-left .12s ease-out;
    line-height: 1.5;
    display: inline-block
}

.ftr-link:hover {
    color: #25D3BB;
    padding-left: 4px
}

.ftr-link:focus {
    background: #0D0D0D;
    color: #FFF;
    outline: none;
    padding: 4px 12px;
    margin: -4px -12px
}

.ftr-contact-group {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ftr-contact-item {
    font-size: 15px;
    color: #4D4D4D;
    line-height: 1.5
}

.ftr-contact-label {
    font-weight: 700;
    color: #2D2D2D;
    display: block;
    margin-bottom: 4px
}

.ftr-contact-link {
    color: #4D4D4D;
    text-decoration: none;
    transition: color .1s ease-out
}

.ftr-contact-link:hover {
    color: #25D3BB
}

.ftr-contact-link:focus {
    background: #0D0D0D;
    color: #FFF;
    outline: none;
    padding: 4px 12px;
    margin: -4px -12px
}

.ftr-brand-close {
    display: flex;
    justify-content: center;
    margin-bottom: 48px
}

.ftr-brand-mark {
    width: 44px;
    height: 44px;
    background: #FFF;
    border-radius: 2px;
    box-shadow: 0 2px 4px 0 #25d3bb0f 0 0 0 1px #25d3bb1a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: box-shadow .12s ease-out, transform .1s ease-out
}

.ftr-brand-mark:hover {
    box-shadow: 0 5px 25px 0 #25d3bb14 0 0 0 1px #25d3bb33;
    transform: translateY(-2px)
}

.ftr-brand-mark:focus {
    outline: 2px solid #25D3BB;
    outline-offset: 2px
}

.ftr-brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block
}

.ftr-base {
    border-top: 1px solid #25d3bb14;
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px
}

.ftr-copy {
    font-size: 15px;
    color: #6D6D6D;
    line-height: 1.5
}

.ftr-meta-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 24px
}

.ftr-meta-link {
    font-size: 15px;
    color: #6D6D6D;
    text-decoration: none;
    transition: color .1s ease-out;
    line-height: 1.5;
    position: relative
}

.ftr-meta-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #25D3BB;
    transition: width .12s ease-out
}

.ftr-meta-link:hover {
    color: #25D3BB
}

.ftr-meta-link:hover::after {
    width: 100%
}

.ftr-meta-link:focus {
    background: #0D0D0D;
    color: #FFF;
    outline: none;
    padding: 4px 12px;
    margin: -4px -12px
}

.ftr-meta-link:focus::after {
    display: none
}

.consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #fdf7dafa 0%, #fffffffa 100%);
    border-top: 1px solid #25d3bb33;
    box-shadow: 0 -5px 25px 0 #25d3bb14;
    padding: 24px;
    z-index: 2000;
    transform: translateY(0);
    opacity: 1;
    transition: transform .15s ease-out, opacity .15s ease-out
}

.consent-bar[hidden] {
    display: none
}

.consent-mount {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    justify-content: space-between
}

.consent-msg {
    flex: 1 1 auto;
    min-width: 240px
}

.consent-headline {
    font-size: 16px;
    font-weight: 700;
    color: #0D0D0D;
    margin-bottom: 4px;
    line-height: 1.1
}

.consent-txt {
    font-size: 15px;
    color: #4D4D4D;
    line-height: 1.5
}

.consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center
}

.consent-btn {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    padding: 12px 24px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background .1s ease-out, color .1s ease-out, box-shadow .12s ease-out, transform .08s ease-out;
    line-height: 1.1;
    background: linear-gradient(135deg, #25D3BB 0%, #1FBAA4 100%);
    color: #FFF;
    box-shadow: 0 2px 4px 0 #25d3bb0f
}

.consent-btn:hover {
    background: linear-gradient(135deg, #1FBAA4 0%, #1AA090 100%);
    box-shadow: 0 5px 25px 0 #25d3bb14;
    transform: translateY(-1px)
}

.consent-btn:active {
    box-shadow: inset 0 2px 4px 0 #00000026;
    transform: translateY(0)
}

.consent-btn:focus {
    background: #0D0D0D;
    color: #FFF;
    outline: none
}

.consent-manage {
    background: transparent;
    color: #4D4D4D;
    text-decoration: underline;
    padding: 12px 24px;
    box-shadow: none
}

.consent-manage:hover {
    background: #25d3bb14;
    color: #0D0D0D;
    box-shadow: none;
    transform: none
}

.consent-manage:focus {
    background: #0D0D0D;
    color: #FFF;
    text-decoration: none
}

.consent-panel {
    display: none;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #25d3bb26
}

.consent-panel.active {
    display: block
}

.consent-option {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px
}

.consent-check {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #25D3BB
}

.consent-check:focus {
    outline: 2px solid #0D0D0D;
    outline-offset: 2px
}

.consent-opt-label {
    font-size: 15px;
    color: #2D2D2D;
    cursor: pointer;
    line-height: 1.5
}

.consent-policy-ref {
    font-size: 15px;
    color: #6D6D6D;
    margin-top: 12px;
    line-height: 1.5
}

.consent-policy-link {
    color: #25D3BB;
    text-decoration: none;
    transition: color .1s ease-out
}

.consent-policy-link:hover {
    color: #1FBAA4;
    text-decoration: underline
}

.consent-policy-link:focus {
    background: #0D0D0D;
    color: #FFF;
    outline: none;
    padding: 4px 12px;
    margin: -4px -12px
}

@media (max-width: 1024px) {
    .hdr-mount {
        padding: 24px 24px 12px
    }

    .ftr-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 48px 24px
    }

    .consent-mount {
        flex-direction: column;
        align-items: flex-start
    }

    .consent-actions {
        width: 100%;
        justify-content: flex-start
    }
}

@media (max-width: 768px) {
    .hdr-mount {
        padding: 24px 24px 12px;
        gap: 24px
    }

    .brand-label {
        font-size: 24px
    }

    .nav-primary {
        gap: 12px
    }

    .nav-link {
        padding: 12px 24px;
        font-size: 15px
    }

    .ftr-grid {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .ftr-base {
        flex-direction: column;
        align-items: flex-start
    }

    .consent-bar {
        padding: 24px
    }

    .consent-actions {
        flex-direction: column;
        align-items: stretch
    }

    .consent-btn,
    .consent-manage {
        width: 100%;
        text-align: center
    }
}

@media (max-width: 320px) {
    .hdr-mount {
        padding: 24px 12px 12px
    }

    .brand-label {
        font-size: 24px
    }

    .nav-link {
        padding: 12px 24px;
        font-size: 15px
    }

    .ftr-mount {
        padding: 0 12px
    }

    .consent-bar {
        padding: 24px 12px
    }
}

.rules-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px;
    background: #fff
}

.rules-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #1a1a1a
}

.rules-section p:last-child {
    margin-bottom: 0
}

.rules-section strong,
.rules-section b {
    font-weight: 600;
    color: #0a0a0a
}

.rules-section em,
.rules-section i {
    font-style: italic
}

.rules-section table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 48px;
    box-shadow: 0 2px 4px 0 #25d3bb0f;
    border-radius: 2px;
    overflow: hidden
}

.rules-section thead {
    background: linear-gradient(135deg, #25d3bb14, #fdf7da1f)
}

.rules-section thead tr {
    border-bottom: 2px solid #25d3bb26
}

.rules-section tbody tr {
    border-bottom: 1px solid #25d3bb0f;
    transition: background-color .12s ease-out
}

.rules-section tbody tr:last-child {
    border-bottom: none
}

.rules-section tbody tr:hover {
    background: #fdf7da14
}

.rules-section th,
.rules-section td {
    padding: 12px 24px;
    text-align: left;
    font-size: 15px;
    line-height: 1.5
}

.rules-section th {
    font-weight: 600;
    color: #0a0a0a
}

.rules-section td {
    color: #1a1a1a
}

.rules-section hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, #25d3bb1a, #ac0e3a1a, #25d3bb1a);
    margin: 48px 0
}

.rules-section div {
    margin-bottom: 24px
}

@media (max-width: 768px) {
    .rules-section {
        padding: 24px 12px
    }

    .rules-section p {
        font-size: 15px
    }

    .rules-section table {
        display: block;
        overflow-x: auto;
        margin-bottom: 24px
    }

    .rules-section th,
    .rules-section td {
        padding: 12px;
        font-size: 15px
    }

    .rules-section hr {
        margin: 24px 0
    }
}

@media (max-width: 320px) {
    .rules-section {
        padding: 12px
    }

    .rules-section th,
    .rules-section td {
        padding: 12px 4px
    }
}

.pst-dtl {
    background: #fff;
    color: #1a1a1a;
    min-height: 100vh
}

.pst-dtl .ttl-wrp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
    position: relative;
    overflow: hidden
}

.pst-dtl .ttl-lft {
    background: #25D3BB;
    padding: 96px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative
}

.pst-dtl .ttl-rgt {
    background: #AC0E3A;
    position: relative;
    overflow: hidden
}

.pst-dtl .ttl-rgt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.4);
    transition: filter .12s linear
}

.pst-dtl .ttl-rgt:hover img {
    filter: grayscale(0%) contrast(1)
}

.pst-dtl .ttl-h1 {
    font-size: 64px;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 24px;
    max-width: 540px
}

.pst-dtl .ttl-meta {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin: 24px 0 0
}

.pst-dtl .meta-itm {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 15px
}

.pst-dtl .meta-icn {
    width: 32px;
    height: 32px;
    border-radius: 20px;
    background: #fff3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.pst-dtl .meta-icn svg {
    width: 16px;
    height: 16px;
    fill: #fff
}

.pst-dtl .dcr-strp {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(127deg, #25D3BB 0%, #AC0E3A 50%, #FDF7DA 100%)
}

.pst-dtl .artcl-wrp {
    max-width: 1100px;
    margin: 0 auto;
    padding: 96px 48px;
    position: relative
}

.pst-dtl .artcl-wrp::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 48px;
    height: 100%;
    background-image: repeating-linear-gradient(0deg, #25D3BB 0px, #25D3BB 12px, transparent 12px, transparent 24px);
    opacity: .12;
    pointer-events: none
}

.pst-dtl .artcl-grd {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start
}

.pst-dtl .artcl-sdb {
    position: sticky;
    top: 48px
}

.pst-dtl .sdb-stts {
    background: linear-gradient(147deg, #25D3BB 0%, #AC0E3A 60%, #FDF7DA 100%);
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 5px 25px 0 #25d3bb14
}

.pst-dtl .stt-rw {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #fff3
}

.pst-dtl .stt-rw:last-child {
    border-bottom: none
}

.pst-dtl .stt-lbl {
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .05em
}

.pst-dtl .stt-vl {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px
}

.pst-dtl .vl-nmbr {
    font-size: 24px;
    line-height: 1.1;
    color: #fff;
    font-weight: 700
}

.pst-dtl .vl-crcl {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: #ffffff4d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0
}

.pst-dtl .chrt-wrp {
    margin: 24px 0 0;
    display: flex;
    justify-content: center
}

.pst-dtl .dnt-chrt {
    width: 120px;
    height: 120px;
    transform: rotate(-90deg);
    filter: drop-shadow(0 2px 4px #25d3bb0f)
}

.pst-dtl .dnt-chrt circle {
    fill: none;
    stroke-width: 12;
    transition: stroke-dashoffset .15s ease-out
}

.pst-dtl .dnt-bg {
    stroke: #ffffff4d
}

.pst-dtl .dnt-fll {
    stroke: #fff;
    stroke-dasharray: 251.2;
    stroke-dashoffset: 62.8;
    stroke-linecap: round
}

.pst-dtl .artcl-cntnt {
    background: #fff;
    opacity: 0;
    transform: translateX(-24px);
    animation: rvl-dgnl .11s ease-out .2s forwards
}

@keyframes rvl-dgnl {
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.pst-dtl .artcl-cntnt p {
    font-size: 16px;
    line-height: 1.8;
    color: #2a2a2a;
    margin: 0 0 24px
}

.pst-dtl .artcl-cntnt h2 {
    font-size: 48px;
    line-height: 1.1;
    color: #1a1a1a;
    margin: 48px 0 24px
}

.pst-dtl .artcl-cntnt h3 {
    font-size: 24px;
    line-height: 1.5;
    color: #1a1a1a;
    margin: 24px 0 12px
}

.pst-dtl .artcl-cntnt strong {
    color: #AC0E3A;
    font-weight: 700
}

.pst-dtl .artcl-cntnt ul,
.pst-dtl .artcl-cntnt ol {
    margin: 0 0 24px 24px;
    padding: 0
}

.pst-dtl .artcl-cntnt li {
    font-size: 16px;
    line-height: 1.8;
    color: #2a2a2a;
    margin: 0 0 12px;
    position: relative;
    padding-left: 24px
}

.pst-dtl .artcl-cntnt li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: #25D3BB
}

.pst-dtl .artcl-cntnt ol li::before {
    content: none
}

.pst-dtl .artcl-cntnt table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 24px;
    box-shadow: 0 2px 4px 0 #25d3bb0f
}

.pst-dtl .artcl-cntnt thead {
    background: linear-gradient(127deg, #25D3BB 0%, #AC0E3A 100%)
}

.pst-dtl .artcl-cntnt thead td {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: 15px
}

.pst-dtl .artcl-cntnt td {
    padding: 12px;
    border: 1px solid #f0f0f0;
    font-size: 16px;
    line-height: 1.5;
    color: #2a2a2a
}

.pst-dtl .artcl-cntnt tr:hover td {
    background: #fafafa
}

.pst-dtl .artcl-cntnt figure {
    margin: 48px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px 0 #25d3bb24
}

.pst-dtl .artcl-cntnt figure img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .15s ease-out
}

.pst-dtl .artcl-cntnt figure:hover img {
    transform: scale(1.05)
}

.pst-dtl .artcl-cntnt figcaption {
    padding: 12px 24px;
    background: #f5f5f5;
    font-size: 15px;
    line-height: 1.5;
    color: #5a5a5a
}

.pst-dtl .athr-inf {
    background: linear-gradient(127deg, #25d3bb14 0%, #ac0e3a14 100%);
    padding: 24px;
    border-radius: 20px;
    margin: 48px 0 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    box-shadow: 0 2px 4px 0 #25d3bb0f
}

.pst-dtl .athr-icn {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(147deg, #25D3BB 0%, #AC0E3A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    color: #fff;
    font-weight: 700
}

.pst-dtl .athr-txt {
    flex: 1
}

.pst-dtl .athr-lbl {
    font-size: 15px;
    color: #7a7a7a;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin: 0 0 4px
}

.pst-dtl .athr-nm {
    font-size: 24px;
    line-height: 1.1;
    color: #1a1a1a;
    margin: 0
}

@media (max-width: 1024px) {
    .pst-dtl .ttl-wrp {
        grid-template-columns: 1fr;
        min-height: auto
    }

    .pst-dtl .ttl-lft {
        padding: 48px 24px
    }

    .pst-dtl .ttl-h1 {
        font-size: 48px
    }

    .pst-dtl .ttl-rgt {
        min-height: 400px
    }

    .pst-dtl .artcl-wrp {
        padding: 48px 24px
    }

    .pst-dtl .artcl-grd {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .pst-dtl .artcl-sdb {
        position: static
    }

    .pst-dtl .artcl-wrp::before {
        width: 24px
    }
}

@media (max-width: 768px) {
    .pst-dtl .ttl-h1 {
        font-size: 24px
    }

    .pst-dtl .ttl-meta {
        flex-direction: column;
        gap: 12px
    }

    .pst-dtl .artcl-cntnt h2 {
        font-size: 24px
    }

    .pst-dtl .artcl-cntnt h3 {
        font-size: 16px
    }

    .pst-dtl .athr-inf {
        flex-direction: column;
        text-align: center
    }

    .pst-dtl .artcl-cntnt table {
        display: block;
        overflow-x: auto;
        width: 100%
    }
}

@media (max-width: 320px) {
    .pst-dtl .ttl-lft {
        padding: 24px 12px
    }

    .pst-dtl .artcl-wrp {
        padding: 24px 12px
    }

    .pst-dtl .sdb-stts {
        padding: 12px
    }
}

.pst-dtl .lnk-btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(127deg, #25D3BB 0%, #AC0E3A 100%);
    color: #fff !important;
    text-decoration: none;
    border-radius: 2px;
    font-size: 16px;
    transition: box-shadow .12s ease-out, transform .08s linear;
    box-shadow: 0 2px 4px 0 #25d3bb0f
}

.pst-dtl .lnk-btn:hover {
    box-shadow: 0 10px 40px 0 #25d3bb24;
    transform: translateY(-2px)
}

.pst-dtl .lnk-btn:active {
    box-shadow: inset 0 2px 4px 0 #25d3bb0f;
    transform: translateY(0)
}

.srvcs-pg {
    background: #fff;
    color: #1a1a1a
}

.srvcs-pg .tl-bnr {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 420px;
    padding: 48px 96px 48px 24px;
    overflow: hidden;
    background: linear-gradient(127deg, #fff 0%, #f5f5f5 48%, #fafafa 100%)
}

.srvcs-pg .tl-bnr::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(./uploads_gallery/post-thumbnail-2.jpg);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .12s ease-out;
    pointer-events: none
}

.srvcs-pg .tl-bnr:hover::before {
    opacity: .08
}

.srvcs-pg .tl-bnr::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(217deg, #25d3bb1c 0%, transparent 62%), linear-granite-noise;
    mix-blend-mode: overlay;
    opacity: .4;
    pointer-events: none
}

.srvcs-pg .tl-bnr-cntnt {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 96px;
    align-items: center
}

.srvcs-pg .tl-bnr-txt {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.srvcs-pg .tl-bnr-hdng {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0;
    letter-spacing: -.02em
}

.srvcs-pg .tl-bnr-qte {
    font-size: 24px;
    line-height: 1.5;
    color: #4a4a4a;
    margin: 0;
    font-style: italic;
    border-left: 4px solid #25D3BB;
    padding-left: 24px
}

.srvcs-pg .tl-bnr-img-wrp {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 10px 40px 0 #25d3bb24
}

.srvcs-pg .tl-bnr-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .14s ease-out
}

.srvcs-pg .tl-bnr-img-wrp:hover .tl-bnr-img {
    transform: scale(1.06)
}

.srvcs-pg .tl-bnr-img-wrp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #25d3bb52 0%, #ac0e3a47 100%);
    z-index: 1;
    transition: opacity .11s linear;
    pointer-events: none
}

.srvcs-pg .tl-bnr-img-wrp:hover::before {
    opacity: .6
}

.srvcs-pg .tl-bnr-deco {
    position: absolute;
    top: 50%;
    right: 48%;
    width: 180px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #25D3BB 50%, transparent 100%);
    transform: translateY(-50%) rotate(-12deg);
    opacity: .3;
    pointer-events: none
}

@media (max-width: 1024px) {
    .srvcs-pg .tl-bnr {
        padding: 48px
    }

    .srvcs-pg .tl-bnr-cntnt {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .srvcs-pg .tl-bnr-hdng {
        font-size: 48px
    }

    .srvcs-pg .tl-bnr-img-wrp {
        height: 240px
    }

    .srvcs-pg .tl-bnr-deco {
        display: none
    }
}

@media (max-width: 768px) {
    .srvcs-pg .tl-bnr {
        min-height: 360px;
        padding: 48px 24px
    }

    .srvcs-pg .tl-bnr-hdng {
        font-size: 48px
    }

    .srvcs-pg .tl-bnr-qte {
        font-size: 16px
    }

    .srvcs-pg .tl-bnr-img-wrp {
        height: 200px
    }
}

@media (max-width: 320px) {
    .srvcs-pg .tl-bnr {
        padding: 24px 12px
    }

    .srvcs-pg .tl-bnr-hdng {
        font-size: 48px
    }
}

.srvcs-pg .srvc-grd {
    padding: 96px 24px;
    background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
    position: relative
}

.srvcs-pg .srvc-grd::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #25d3bb33 50%, transparent 100%)
}

.srvcs-pg .srvc-grd-wrp {
    max-width: 1100px;
    margin: 0 auto
}

.srvcs-pg .srvc-grd-hdr {
    text-align: center;
    margin-bottom: 96px
}

.srvcs-pg .srvc-grd-ttl {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0 0 24px;
    text-transform: uppercase;
    letter-spacing: .04em
}

.srvcs-pg .srvc-grd-desc {
    font-size: 16px;
    line-height: 1.5;
    color: #4a4a4a;
    margin: 0 auto;
    max-width: 720px
}

.srvcs-pg .srvc-grd-cntnt {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.srvcs-pg .srvc-crd {
    background: #fff;
    border-radius: 20px;
    padding: 48px 24px;
    box-shadow: 0 2px 4px 0 #25d3bb0f;
    transition: transform .09s ease-out, box-shadow .09s ease-out, background .11s linear;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.srvcs-pg .srvc-crd::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, #25D3BB 0%, #AC0E3A 100%);
    opacity: 0;
    transition: opacity .11s linear;
    pointer-events: none
}

.srvcs-pg .srvc-crd:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px 0 #25d3bb24;
    background: #fafafa
}

.srvcs-pg .srvc-crd:hover::before {
    opacity: .03
}

.srvcs-pg .srvc-crd:active {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px 0 #25d3bb14 inset 0 2px 4px 0 #25d3bb0f
}

.srvcs-pg .srvc-crd-icn {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    background: linear-gradient(135deg, #25D3BB 0%, #AC0E3A 50%, #FDF7DA 100%);
    position: relative;
    z-index: 1;
    transition: transform .12s ease-out
}

.srvcs-pg .srvc-crd:hover .srvc-crd-icn {
    transform: rotate(4deg) scale(1.08)
}

.srvcs-pg .srvc-crd-icn svg {
    width: 32px;
    height: 32px;
    fill: #fff
}

.srvcs-pg .srvc-crd-txt {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.srvcs-pg .srvc-crd-hdng {
    font-size: 24px;
    line-height: 1.1;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0
}

.srvcs-pg .srvc-crd-para {
    font-size: 15px;
    line-height: 1.5;
    color: #4a4a4a;
    margin: 0
}

.srvcs-pg .srvc-mlstn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 48px;
    padding: 24px;
    background: linear-gradient(90deg, #fdf7da4d 0%, #25d3bb14 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden
}

.srvcs-pg .srvc-mlstn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #25d3bb33 20%, #25d3bb33 80%, transparent 100%);
    transform: translateY(-50%);
    pointer-events: none
}

.srvcs-pg .mlstn-itm {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
    flex: 1
}

.srvcs-pg .mlstn-icn-wrp {
    width: 48px;
    height: 48px;
    border-radius: 2px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px 0 #25d3bb0f;
    transition: transform .1s ease-out, box-shadow .1s ease-out
}

.srvcs-pg .mlstn-icn-wrp:hover {
    transform: scale(1.12);
    box-shadow: 0 5px 25px 0 #25d3bb14
}

.srvcs-pg .mlstn-icn {
    width: 24px;
    height: 24px;
    border-radius: 2px;
    background: linear-gradient(135deg, #25D3BB 0%, #AC0E3A 100%)
}

.srvcs-pg .mlstn-lbl {
    font-size: 15px;
    line-height: 1.1;
    font-weight: 600;
    color: #0a0a0a;
    text-align: center;
    margin: 0
}

.srvcs-pg .mlstn-dt {
    font-size: 15px;
    line-height: 1.1;
    color: #6a6a6a;
    text-align: center;
    margin: 0
}

@media (max-width: 1024px) {
    .srvcs-pg .srvc-grd {
        padding: 48px 24px
    }

    .srvcs-pg .srvc-grd-hdr {
        margin-bottom: 48px
    }

    .srvcs-pg .srvc-grd-ttl {
        font-size: 48px
    }

    .srvcs-pg .srvc-grd-cntnt {
        grid-template-columns: repeat(2, 1fr)
    }

    .srvcs-pg .srvc-mlstn {
        flex-direction: column;
        gap: 24px
    }

    .srvcs-pg .srvc-mlstn::before {
        top: 0;
        bottom: 0;
        left: 50%;
        width: 2px;
        height: auto;
        transform: translateX(-50%);
        background: linear-gradient(180deg, transparent 0%, #25d3bb33 20%, #25d3bb33 80%, transparent 100%)
    }
}

@media (max-width: 768px) {
    .srvcs-pg .srvc-grd {
        padding: 48px 24px
    }

    .srvcs-pg .srvc-grd-ttl {
        font-size: 24px
    }

    .srvcs-pg .srvc-grd-desc {
        font-size: 15px
    }

    .srvcs-pg .srvc-grd-cntnt {
        grid-template-columns: 1fr
    }

    .srvcs-pg .srvc-crd {
        padding: 24px
    }

    .srvcs-pg .srvc-mlstn {
        padding: 24px 12px;
        margin-top: 24px
    }
}

@media (max-width: 320px) {
    .srvcs-pg .srvc-grd {
        padding: 24px 12px
    }

    .srvcs-pg .srvc-grd-hdr {
        margin-bottom: 24px
    }

    .srvcs-pg .srvc-crd {
        padding: 24px 12px
    }
}

@keyframes clrwsh {
    0% {
        background-position: 0 50%
    }

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

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

.srvcs-pg .srvc-grd {
    background: linear-gradient(270deg, #fafafa, #fff, #f5f5f5, #fff);
    background-size: 400% 400%;
    animation: clrwsh 18s ease-in-out infinite
}

.abt-authr {
    background: #fff;
    color: #1a1a1a
}

.abt-authr .ttl-bnr {
    display: flex;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto 96px;
    background: #fefefe;
    box-shadow: 0 10px 40px 0 #25d3bb24;
    border-radius: 2px;
    overflow: hidden;
    animation: scl-in .9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards
}

@keyframes scl-in {
    from {
        opacity: 0;
        transform: scale(0.97)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.abt-authr .img-wrp {
    flex: 0 0 50%;
    position: relative;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
    overflow: hidden
}

.abt-authr .img-wrp::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(127deg, #25D3BB 0%, #AC0E3A 50%, #FDF7DA 100%);
    opacity: .15;
    animation: grd-rtt 8s linear infinite;
    z-index: 1;
    pointer-events: none
}

@keyframes grd-rtt {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.abt-authr .img-wrp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .12s ease-out
}

.abt-authr .img-wrp:hover img {
    transform: scale(1.08)
}

.abt-authr .txt-zn {
    flex: 0 0 50%;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.abt-authr .ttl-bnr h1 {
    font-size: 48px;
    line-height: 1.1;
    margin: 0 0 24px;
    color: #0a0a0a;
    letter-spacing: -.02em
}

.abt-authr .ttl-bnr .prblm {
    font-size: 16px;
    line-height: 1.5;
    color: #4a4a4a;
    margin: 0 0 12px
}

.abt-authr .ttl-bnr .sltn {
    font-size: 16px;
    line-height: 1.5;
    color: #2a2a2a;
    margin: 0
}

.abt-authr .ttl-bnr .sltn strong {
    color: #AC0E3A;
    font-weight: 600
}

.abt-authr .cntnt-grd {
    max-width: 1100px;
    margin: 0 auto 96px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 0 24px
}

.abt-authr .crd-bx {
    background: linear-gradient(147deg, #25d3bb08 0%, #ac0e3a08 100%);
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 5px 25px 0 #ac0e3a14;
    transition: transform .09s linear, box-shadow .09s linear;
    position: relative;
    overflow: hidden
}

.abt-authr .crd-bx::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at bottom right, #fdf7da66 0%, transparent 70%);
    pointer-events: none;
    z-index: 0
}

.abt-authr .crd-bx:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px 0 #25d3bb24
}

.abt-authr .crd-bx h2 {
    font-size: 24px;
    line-height: 1.1;
    margin: 0 0 24px;
    color: #0a0a0a;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 300;
    position: relative;
    z-index: 1
}

.abt-authr .crd-bx p {
    font-size: 15px;
    line-height: 1.8;
    color: #3a3a3a;
    margin: 0;
    position: relative;
    z-index: 1
}

.abt-authr .crd-bx a {
    color: #25D3BB;
    text-decoration: none;
    transition: color .08s ease-out
}

.abt-authr .crd-bx a:hover {
    color: #AC0E3A
}

.abt-authr .dvdr-dts {
    text-align: center;
    margin: 96px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px
}

.abt-authr .dvdr-dts span {
    width: 4px;
    height: 4px;
    background: #25D3BB;
    border-radius: 2px;
    display: block;
    opacity: .6
}

.abt-authr .dvdr-dts span:nth-child(2) {
    background: #AC0E3A
}

.abt-authr .dvdr-dts span:nth-child(3) {
    background: #FDF7DA;
    border: 1px solid #AC0E3A
}

.abt-authr .bio-sctn {
    max-width: 1100px;
    margin: 0 auto 96px;
    padding: 96px 48px;
    background-image: url(./uploads_gallery/temp__MG_6740.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 2px;
    overflow: hidden
}

.abt-authr .bio-sctn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(127deg, #0a0a0aeb 0%, #2a2a2ae0 100%);
    z-index: 1
}

.abt-authr .bio-innr {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto
}

.abt-authr .bio-sctn h2 {
    font-size: 64px;
    line-height: 1.1;
    margin: 0 0 48px;
    color: #fff;
    text-align: center
}

.abt-authr .bio-grd {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px
}

.abt-authr .bio-itm {
    background: #ffffff14;
    padding: 24px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    border: 1px solid #25d3bb33;
    transition: background .11s ease-out, border-color .11s ease-out
}

.abt-authr .bio-itm:hover {
    background: #ffffff1f;
    border-color: #ac0e3a66
}

.abt-authr .bio-itm h3 {
    font-size: 16px;
    line-height: 1.1;
    margin: 0 0 12px;
    color: #25D3BB;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 400
}

.abt-authr .bio-itm p {
    font-size: 15px;
    line-height: 1.5;
    color: #e8e8e8;
    margin: 0
}

.abt-authr .crv-ln {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid #fdf7da26;
    border-radius: 50%;
    top: -100px;
    right: -100px;
    pointer-events: none;
    z-index: 2
}

.abt-authr .crv-ln::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border: 2px solid #25d3bb33;
    border-radius: 50%;
    top: 30px;
    left: 30px
}

@media (max-width: 1440px) {
    .abt-authr .ttl-bnr {
        margin-bottom: 48px
    }

    .abt-authr .cntnt-grd {
        margin-bottom: 48px
    }

    .abt-authr .bio-sctn {
        margin-bottom: 48px;
        padding: 48px 24px
    }
}

@media (max-width: 1024px) {
    .abt-authr .ttl-bnr {
        flex-direction: column
    }

    .abt-authr .img-wrp {
        flex: 0 0 auto;
        height: 400px;
        clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%)
    }

    .abt-authr .txt-zn {
        flex: 0 0 auto;
        padding: 24px
    }

    .abt-authr .ttl-bnr h1 {
        font-size: 24px;
        margin-bottom: 12px
    }

    .abt-authr .cntnt-grd {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .abt-authr .crd-bx {
        padding: 24px
    }

    .abt-authr .bio-sctn h2 {
        font-size: 48px;
        margin-bottom: 24px
    }

    .abt-authr .bio-grd {
        grid-template-columns: 1fr;
        gap: 24px
    }
}

@media (max-width: 768px) {
    .abt-authr .ttl-bnr {
        margin-bottom: 24px !important
    }

    .abt-authr .img-wrp {
        height: 300px
    }

    .abt-authr .ttl-bnr h1 {
        font-size: 24px
    }

    .abt-authr .ttl-bnr .prblm,
    .abt-authr .ttl-bnr .sltn {
        font-size: 15px
    }

    .abt-authr .cntnt-grd {
        padding: 0 12px;
        margin-bottom: 24px
    }

    .abt-authr .crd-bx {
        padding: 24px
    }

    .abt-authr .crd-bx h2 {
        font-size: 16px
    }

    .abt-authr .bio-sctn {
        padding: 48px 12px;
        margin-bottom: 24px
    }

    .abt-authr .bio-sctn h2 {
        font-size: 24px
    }

    .abt-authr .dvdr-dts {
        margin: 48px auto
    }
}

@media (max-width: 320px) {
    .abt-authr .txt-zn {
        padding: 12px
    }

    .abt-authr .crd-bx {
        padding: 12px
    }

    .abt-authr .bio-sctn {
        padding: 24px 12px
    }

    .abt-authr .bio-itm {
        padding: 12px
    }
}

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

.ld__ttl-wrap {
    display: flex;
    align-items: stretch;
    min-height: 560px;
    position: relative;
    background: #fafcfc;
    overflow: hidden
}

.ld__ttl-img-box {
    position: relative;
    overflow: hidden
}

.ld__ttl-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.3);
    display: block
}

.ld__ttl-txt-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 96px;
    position: relative
}

.ld__ttl-txt-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, #25d3bb05 2px, #25d3bb05 4px), repeating-linear-gradient(90deg, transparent, transparent 2px, #ac0e3a05 2px, #ac0e3a05 4px);
    pointer-events: none;
    z-index: 1
}

.ld__ttl-lbl {
    font-size: 15px;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #25D3BB;
    margin-bottom: 12px;
    position: relative;
    z-index: 2
}

.ld__ttl-hdg {
    font-size: 64px;
    line-height: 1.1;
    color: #0a0a0a;
    margin-bottom: 24px;
    position: relative;
    z-index: 2
}

.ld__ttl-dsc {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    position: relative;
    z-index: 2
}

.ld__pst-sec {
    max-width: 1100px;
    margin: 0 auto;
    padding: 96px 24px
}

.ld__pst-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px
}

.ld__pst-crd {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    overflow: hidden;
    transition: box-shadow .12s ease-out, transform .1s ease-out
}

.ld__pst-crd:hover {
    box-shadow: 0 10px 40px 0 #25d3bb24;
    transform: translateY(-4px)
}

.ld__pst-img-box {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative
}

.ld__pst-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .15s ease-out
}

.ld__pst-crd:hover .ld__pst-img {
    transform: scale(1.06)
}

.ld__pst-cptl {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, #0a0a0aeb, transparent);
    color: #fff;
    padding: 24px;
    font-size: 15px;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .11s ease-out, transform .11s ease-out
}

.ld__pst-crd:hover .ld__pst-cptl {
    opacity: 1;
    transform: translateY(0)
}

.ld__pst-cnt {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.ld__pst-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap
}

.ld__pst-auth {
    font-size: 15px;
    line-height: 1.5;
    color: #AC0E3A
}

.ld__pst-dt {
    font-size: 15px;
    line-height: 1.5;
    color: #7a7a7a
}

.ld__pst-ttl {
    font-size: 24px;
    line-height: 1.5;
    color: #0a0a0a;
    margin-bottom: 12px
}

.ld__pst-dsc {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 24px;
    flex-grow: 1
}

.ld__pst-ftr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid #e8e8e8
}

.ld__pst-tm {
    font-size: 15px;
    line-height: 1.5;
    color: #6a6a6a
}

.ld__pst-stts {
    display: flex;
    align-items: center;
    gap: 12px
}

.ld__pst-vw,
.ld__pst-lk {
    font-size: 15px;
    line-height: 1.5;
    color: #6a6a6a;
    display: flex;
    align-items: center;
    gap: 4px
}

.ld__pst-lnk {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1
}

.ld__hbt-sec {
    background: linear-gradient(127deg, #25D3BB 0%, #AC0E3A 50%, #FDF7DA 100%);
    padding: 96px 24px;
    position: relative;
    clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%)
}

.ld__hbt-inr {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 10px 40px 0 #ac0e3a24
}

.ld__hbt-hdg {
    font-size: 48px;
    line-height: 1.1;
    color: #0a0a0a;
    margin-bottom: 24px
}

.ld__hbt-txt {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 24px
}

.ld__hbt-lst {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0
}

.ld__hbt-itm {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    line-height: 1.8;
    color: #2a2a2a;
    position: relative;
    padding-left: 24px
}

.ld__hbt-itm::before {
    content: '';
    position: absolute;
    left: 0;
    width: 8px;
    height: 8px;
    background: #25D3BB;
    border-radius: 2px;
    transition: background .09s linear
}

.ld__hbt-itm:hover::before {
    background: #AC0E3A
}

.ld__undrt-sec {
    max-width: 1100px;
    margin: 0 auto;
    padding: 96px 24px
}

.ld__undrt-hdg {
    font-size: 48px;
    line-height: 1.1;
    color: #0a0a0a;
    margin-bottom: 48px;
    text-align: center
}

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

.ld__undrt-crd {
    background: #fafcfc;
    border-radius: 20px;
    padding: 24px;
    transition: box-shadow .13s ease-out;
    position: relative;
    overflow: hidden
}

.ld__undrt-crd::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, #25d3bb14 50%, transparent 100%);
    transition: left .14s ease-out
}

.ld__undrt-crd:hover::before {
    left: 100%
}

.ld__undrt-crd:hover {
    box-shadow: 0 5px 25px 0 #25d3bb14
}

.ld__undrt-ttl {
    font-size: 24px;
    line-height: 1.5;
    color: #0a0a0a;
    margin-bottom: 12px;
    position: relative
}

.ld__undrt-dsc {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    position: relative
}

.ld__cnnct-sec {
    background: #fafcfc;
    padding: 96px 24px;
    position: relative
}

.ld__cnnct-dcr {
    position: absolute;
    top: 48px;
    right: 96px;
    width: 120px;
    height: 120px;
    opacity: .06;
    pointer-events: none
}

.ld__cnnct-dcr svg {
    width: 100%;
    height: 100%
}

.ld__cnnct-inr {
    max-width: 1100px;
    margin: 0 auto
}

.ld__cnnct-hdg {
    font-size: 48px;
    line-height: 1.1;
    color: #0a0a0a;
    margin-bottom: 24px
}

.ld__cnnct-txt {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 48px;
    max-width: 720px
}

.ld__cnnct-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
}

.ld__cnnct-lnk-box {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid #e8e8e8;
    transition: border-color .1s ease-out;
    position: relative
}

.ld__cnnct-lnk-box:hover {
    border-color: #25D3BB
}

.ld__cnnct-arr {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .11s ease-out
}

.ld__cnnct-lnk-box:hover .ld__cnnct-arr {
    transform: translate(4px, -4px)
}

.ld__cnnct-arr svg {
    width: 100%;
    height: 100%;
    stroke: #AC0E3A;
    stroke-width: 2;
    fill: none
}

.ld__cnnct-lbl {
    font-size: 15px;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #AC0E3A;
    margin-bottom: 4px
}

.ld__cnnct-nm {
    font-size: 24px;
    line-height: 1.5;
    color: #0a0a0a
}

.ld__trrt-sec {
    max-width: 1100px;
    margin: 0 auto;
    padding: 96px 24px
}

.ld__trrt-hdg {
    font-size: 48px;
    line-height: 1.1;
    color: #0a0a0a;
    margin-bottom: 48px
}

.ld__trrt-wrap {
    display: flex;
    gap: 48px
}

.ld__trrt-lft {
    width: 280px;
    flex-shrink: 0
}

.ld__trrt-rgt {
    flex-grow: 1
}

.ld__trrt-lst {
    display: flex;
    flex-direction: column;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0
}

.ld__trrt-itm {
    background: #fafcfc;
    padding: 12px 24px;
    border-radius: 2px;
    font-size: 16px;
    line-height: 1.8;
    color: #2a2a2a;
    transition: background .09s linear, padding-left .09s linear;
    cursor: pointer
}

.ld__trrt-itm:hover {
    background: #25D3BB;
    color: #fff;
    padding-left: 32px
}

.ld__trrt-cnt {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 2px 4px 0 #25d3bb0f
}

.ld__trrt-sttl {
    font-size: 24px;
    line-height: 1.5;
    color: #0a0a0a;
    margin-bottom: 12px
}

.ld__trrt-dsc {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a
}

.ld__grwth-sec {
    background: linear-gradient(217deg, #FDF7DA 0%, #25D3BB 50%, #AC0E3A 100%);
    padding: 96px 24px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%)
}

.ld__grwth-inr {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 48px
}

.ld__grwth-hdg {
    font-size: 48px;
    line-height: 1.1;
    color: #0a0a0a;
    margin-bottom: 24px
}

.ld__grwth-txt {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 48px
}

.ld__grwth-mtrc-lst {
    display: flex;
    flex-direction: column;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0
}

.ld__grwth-mtrc-itm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.ld__grwth-mtrc-lbl {
    font-size: 16px;
    line-height: 1.5;
    color: #2a2a2a;
    flex-shrink: 0
}

.ld__grwth-mtrc-br-wrap {
    flex-grow: 1;
    height: 8px;
    background: #f0f0f0;
    border-radius: 2px;
    overflow: hidden;
    position: relative
}

.ld__grwth-mtrc-br {
    height: 100%;
    background: linear-gradient(90deg, #25D3BB 0%, #AC0E3A 100%);
    border-radius: 2px;
    transition: width .15s ease-out
}

.ld__grwth-mtrc-vl {
    font-size: 16px;
    line-height: 1.5;
    color: #AC0E3A;
    font-weight: 600;
    flex-shrink: 0;
    min-width: 48px;
    text-align: right
}

.ld__grwth-bdg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #AC0E3A;
    color: #fff;
    font-size: 15px;
    line-height: 1;
    padding: 4px 12px;
    border-radius: 2px;
    margin-left: 12px
}

.ld__vce-sec {
    max-width: 1100px;
    margin: 0 auto;
    padding: 96px 24px
}

.ld__vce-hdg {
    font-size: 48px;
    line-height: 1.1;
    color: #0a0a0a;
    margin-bottom: 24px;
    text-align: center
}

.ld__vce-txt {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px
}

.ld__vce-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.ld__vce-crd {
    background: #fafcfc;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    transition: transform .12s ease-out;
    animation-delay: 0s
}

.ld__vce-crd:nth-child(1) {
    animation-delay: 0s
}

.ld__vce-crd:nth-child(2) {
    animation-delay: .08s
}

.ld__vce-crd:nth-child(3) {
    animation-delay: .15s
}

.ld__vce-crd:nth-child(4) {
    animation-delay: .23s
}

.ld__vce-crd:hover {
    transform: translateY(-8px)
}

.ld__vce-icn {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, #25D3BB 0%, #AC0E3A 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center
}

.ld__vce-icn svg {
    width: 32px;
    height: 32px;
    stroke: #fff;
    stroke-width: 2;
    fill: none
}

.ld__vce-nm {
    font-size: 16px;
    line-height: 1.5;
    color: #0a0a0a;
    margin-bottom: 4px
}

.ld__vce-dsc {
    font-size: 15px;
    line-height: 1.8;
    color: #5a5a5a
}

@media (max-width: 1440px) {
    .ld__ttl-txt-box {
        padding: 48px
    }

    .ld__pst-grid {
        gap: 24px
    }

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

@media (max-width: 1024px) {
    .ld__ttl-wrap {
        flex-direction: column
    }



    .ld__ttl-img-box {
        height: 360px
    }

    .ld__ttl-hdg {
        font-size: 48px
    }

    .ld__pst-grid {
        grid-template-columns: 1fr
    }

    .ld__trrt-wrap {
        flex-direction: column
    }

    .ld__trrt-lft {
        width: 100%
    }

    .ld__trrt-lst {
        flex-direction: row;
        flex-wrap: wrap
    }

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

    .ld__cnnct-dcr {
        display: none
    }
}

@media (max-width: 768px) {
    .ld__ttl-txt-box {
        padding: 24px
    }


    .ld__ttl-hdg {
        font-size: 48px
    }

    .ld__pst-sec,
    .ld__undrt-sec,
    .ld__cnnct-sec,
    .ld__trrt-sec,
    .ld__grwth-sec,
    .ld__vce-sec {
        padding: 48px 12px
    }

    .ld__hbt-sec,
    .ld__grwth-sec {
        padding: 48px 12px
    }

    .ld__hbt-inr,
    .ld__grwth-inr,
    .ld__trrt-cnt {
        padding: 24px
    }

    .ld__undrt-grid {
        grid-template-columns: 1fr
    }

    .ld__cnnct-grid {
        grid-template-columns: 1fr
    }

    .ld__vce-grid {
        grid-template-columns: 1fr
    }

    .ld__hbt-hdg,
    .ld__undrt-hdg,
    .ld__cnnct-hdg,
    .ld__trrt-hdg,
    .ld__grwth-hdg,
    .ld__vce-hdg {
        font-size: 24px
    }

    .ld__grwth-mtrc-itm {
        flex-wrap: wrap;
        gap: 8px 24px;
        align-items: flex-start
    }

    .ld__grwth-mtrc-lbl {
        flex: 1 1 0%;
        min-width: 0
    }

    .ld__grwth-mtrc-vl {
        flex-shrink: 0
    }
}

@media (max-width: 320px) {
    .ld__ttl-hdg {
        font-size: 24px
    }

    .ld__pst-img-box {
        height: 200px
    }
}

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

.blg-pg .ttl-bnr {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px;
    gap: 48px;
    overflow: hidden
}

.blg-pg .ttl-bnr::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 24px;
    width: 8px;
    height: 8px;
    background: #25d3bb33;
    border-radius: 50%;
    animation: dotPulse 4s ease-in-out infinite
}

.blg-pg .ttl-bnr::after {
    content: '';
    position: absolute;
    bottom: 24px;
    right: 96px;
    width: 6px;
    height: 6px;
    background: #ac0e3a26;
    border-radius: 50%;
    animation: dotPulse 5s ease-in-out infinite 1s
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: .2;
        transform: scale(1)
    }

    50% {
        opacity: .6;
        transform: scale(1.4)
    }
}

.blg-pg .ttl-txt {
    flex: 1;
    padding-right: 24px
}

.blg-pg .ttl-hd {
    font-size: 48px;
    line-height: 1.1;
    margin: 0 0 24px;
    color: #0a0a0a
}

.blg-pg .ttl-sub {
    font-size: 16px;
    line-height: 1.5;
    color: #4a4a4a;
    margin: 0
}

.blg-pg .ttl-img-wrp {
    flex: 1;
    max-width: 480px;
    opacity: 0;
    animation: fadeInImage 1.2s ease-out .3s forwards
}

@keyframes fadeInImage {
    to {
        opacity: 1
    }
}

.blg-pg .ttl-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 2px;
    display: block
}

.blg-pg .pst-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 96px 24px;
    position: relative
}

.blg-pg .pst-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(117deg, #25D3BB 0%, #AC0E3A 50%, #FDF7DA 100%)
}

.blg-pg .grid-ttl {
    font-size: 24px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 300;
    margin: 0 0 48px;
    color: #0a0a0a
}

.blg-pg .pst-lst {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px
}

.blg-pg .pst-crd {
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 4px 0 #25d3bb0f;
    transition: box-shadow .12s ease-out, transform .12s ease-out;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-top: 2px solid transparent
}

.blg-pg .pst-crd:hover {
    box-shadow: 0 10px 40px 0 #25d3bb24;
    transform: translateY(-4px);
    border-top-color: #25D3BB
}

.blg-pg .pst-crd:active {
    box-shadow: 0 2px 4px 0 #25d3bb0f inset;
    transform: translateY(0)
}

.blg-pg .pst-img-wrp {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5
}

.blg-pg .pst-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .15s ease-out
}

.blg-pg .pst-crd:hover .pst-img {
    transform: scale(1.08)
}

.blg-pg .pst-bdy {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.blg-pg .pst-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #6a6a6a
}

.blg-pg .pst-dt {
    display: flex;
    align-items: center;
    gap: 4px
}

.blg-pg .pst-dt::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #25D3BB;
    border-radius: 50%;
    display: block
}

.blg-pg .pst-rdtm {
    display: flex;
    align-items: center;
    gap: 4px
}

.blg-pg .pst-rdtm::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #AC0E3A;
    border-radius: 50%;
    display: block
}

.blg-pg .pst-ttl {
    font-size: 24px;
    line-height: 1.1;
    margin: 0 0 12px;
    color: #0a0a0a
}

.blg-pg .pst-ttl-lnk {
    color: inherit;
    text-decoration: none;
    transition: color .1s linear
}

.blg-pg .pst-ttl-lnk:hover {
    color: #25D3BB
}

.blg-pg .pst-dsc {
    font-size: 16px;
    line-height: 1.5;
    color: #4a4a4a;
    margin: 0 0 24px;
    flex: 1
}

.blg-pg .pst-ftr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #efefef
}

.blg-pg .pst-auth {
    font-size: 15px;
    color: #0a0a0a;
    font-weight: 500
}

.blg-pg .pst-stats {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #6a6a6a
}

.blg-pg .pst-vws,
.blg-pg .pst-lks {
    display: flex;
    align-items: center;
    gap: 4px
}

.blg-pg .pst-vws::before {
    content: '';
    width: 14px;
    height: 10px;
    background: currentColor;
    clip-path: polygon(0 50%, 40% 0, 100% 0, 100% 100%, 40% 100%, 0 50%, 20% 50%, 50% 20%, 80% 50%, 50% 80%, 20% 50%);
    opacity: .6
}

.blg-pg .pst-lks::before {
    content: '';
    width: 12px;
    height: 12px;
    background: currentColor;
    clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    opacity: .6
}

.blg-pg .qut-blk {
    background: linear-gradient(117deg, #25d3bb08 0%, #ac0e3a08 100%);
    padding: 96px 24px;
    position: relative;
    overflow: hidden
}

.blg-pg .qut-blk::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(./uploads_gallery/2025-10-23-post-thumbnail-9.jpg) center/cover no-repeat;
    opacity: 0;
    animation: overlayFade 8s ease-in-out infinite
}

@keyframes overlayFade {

    0%,
    100% {
        opacity: 0
    }

    50% {
        opacity: .15
    }
}

.blg-pg .qut-blk::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(117deg, #25d3bb66 0%, #ac0e3a66 100%);
    opacity: 0;
    animation: overlayFade 8s ease-in-out infinite
}

.blg-pg .qut-cntr {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.blg-pg .qut-txt {
    font-size: 48px;
    line-height: 1.1;
    color: #0a0a0a;
    margin: 0 0 24px;
    max-width: 800px;
    position: relative;
    padding-left: 48px
}

.blg-pg .qut-txt::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #25D3BB 0%, #AC0E3A 100%);
    border-radius: 20px
}

.blg-pg .qut-auth {
    font-size: 16px;
    line-height: 1.5;
    color: #4a4a4a;
    padding-left: 48px
}

.blg-pg .info-blk {
    max-width: 1100px;
    margin: 0 auto;
    padding: 96px 24px
}

.blg-pg .info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px
}

.blg-pg .info-col h2 {
    font-size: 24px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 300;
    margin: 0 0 24px;
    color: #0a0a0a
}

.blg-pg .info-col p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin: 0 0 24px
}

.blg-pg .info-col p:last-child {
    margin-bottom: 0
}

.blg-pg .prog-lst {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative
}

.blg-pg .prog-lst::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background: linear-gradient(180deg, #25D3BB 0%, #AC0E3A 100%)
}

.blg-pg .prog-itm {
    position: relative;
    padding-left: 24px;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.5;
    color: #4a4a4a
}

.blg-pg .prog-itm:last-child {
    margin-bottom: 0
}

.blg-pg .prog-itm::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 2px solid #25D3BB;
    border-radius: 50%;
    transition: background .1s linear, border-color .1s linear
}

.blg-pg .prog-itm:hover::before {
    background: #25D3BB;
    border-color: #AC0E3A
}

.blg-pg .cta-blk {
    background: #0a0a0a;
    padding: 96px 24px;
    position: relative;
    overflow: hidden
}

.blg-pg .cta-blk::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #25D3BB 50%, transparent 100%)
}

.blg-pg .cta-blk::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #25D3BB 0%, #AC0E3A 50%, #FDF7DA 100%)
}

.blg-pg .cta-cntr {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center
}

.blg-pg .cta-hd {
    font-size: 48px;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 24px
}

.blg-pg .cta-txt {
    font-size: 16px;
    line-height: 1.5;
    color: #d0d0d0;
    margin: 0 0 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

.blg-pg .cta-btn {
    display: inline-block;
    padding: 12px 48px;
    font-size: 16px;
    color: #0a0a0a;
    background: linear-gradient(117deg, #25D3BB 0%, #AC0E3A 50%, #FDF7DA 100%);
    border: none;
    border-radius: 2px;
    text-decoration: none;
    cursor: pointer;
    transition: transform .1s ease-out, box-shadow .1s ease-out;
    box-shadow: 0 5px 25px 0 #25d3bb14
}

.blg-pg .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px 0 #25d3bb24
}

.blg-pg .cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px 0 #25d3bb0f inset
}

@media (max-width: 1024px) {
    .blg-pg .ttl-bnr {
        flex-direction: column;
        gap: 24px
    }

    .blg-pg .ttl-txt {
        padding-right: 0
    }

    .blg-pg .ttl-img-wrp {
        max-width: 100%
    }

    .blg-pg .info-grid {
        grid-template-columns: 1fr;
        gap: 48px
    }
}

@media (max-width: 768px) {
    .blg-pg .ttl-hd {
        font-size: 24px
    }

    .blg-pg .ttl-img {
        height: 240px
    }

    .blg-pg .pst-lst {
        grid-template-columns: 1fr
    }

    .blg-pg .qut-txt {
        font-size: 24px;
        padding-left: 24px
    }

    .blg-pg .qut-auth {
        padding-left: 24px
    }

    .blg-pg .cta-hd {
        font-size: 24px
    }
}

@media (max-width: 320px) {

    .blg-pg .ttl-bnr,
    .blg-pg .pst-grid,
    .blg-pg .qut-blk,
    .blg-pg .info-blk,
    .blg-pg .cta-blk {
        padding-left: 12px;
        padding-right: 12px
    }
}

.success-pg {
    background: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px
}

.success-pg .confirm-wrap {
    max-width: 1100px;
    width: 100%;
    text-align: center
}

.success-pg .icon-zone {
    margin-bottom: 48px;
    position: relative;
    display: inline-block
}

.success-pg .check-circle {
    width: 96px;
    height: 96px;
    border: 4px solid #25D3BB;
    border-radius: 50%;
    position: relative;
    background: #fff;
    box-shadow: 0 5px 25px 0 #25d3bb14
}

.success-pg .check-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 24px;
    border-left: 4px solid #25D3BB;
    border-bottom: 4px solid #25D3BB;
    transform-origin: center;
    transform: translate(-50%, -60%) rotate(-45deg)
}

.success-pg .msg-head {
    font-size: 48px;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -.02em
}

.success-pg .msg-txt {
    font-size: 16px;
    line-height: 1.5;
    color: #4a4a4a;
    margin-bottom: 48px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto
}

.success-pg .action-zone {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.success-pg .btn-primary {
    background: linear-gradient(127deg, #25D3BB 0%, #AC0E3A 50%, #FDF7DA 100%);
    color: #fff;
    border: none;
    padding: 12px 48px;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform .12s ease-out, box-shadow .12s ease-out;
    box-shadow: 0 2px 4px 0 #25d3bb0f
}

.success-pg .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px 0 #25d3bb14
}

.success-pg .btn-primary:active {
    transform: translateY(0);
    box-shadow: inset 0 2px 4px 0 #25d3bb0f
}

.success-pg .btn-secondary {
    background: #fff;
    color: #4a4a4a;
    border: 2px solid #e8e8e8;
    padding: 10px 48px;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: border-color .1s linear, color .1s linear
}

.success-pg .btn-secondary:hover {
    border-color: #25D3BB;
    color: #25D3BB
}

.success-pg .btn-secondary:active {
    background: #f5f5f5
}

.success-pg .detail-info {
    margin-top: 96px;
    padding-top: 48px;
    border-top: 1px solid #e8e8e8
}

.success-pg .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 860px;
    margin: 0 auto
}

.success-pg .info-card {
    background: #fafafa;
    padding: 24px;
    border-radius: 2px;
    text-align: left
}

.success-pg .info-label {
    font-size: 15px;
    line-height: 1.5;
    color: #7a7a7a;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.success-pg .info-value {
    font-size: 16px;
    line-height: 1.5;
    color: #1a1a1a
}

.success-pg .info-value a {
    color: #25D3BB;
    text-decoration: none;
    transition: color .09s ease-out
}

.success-pg .info-value a:hover {
    color: #AC0E3A
}

@media (max-width: 768px) {
    .success-pg {
        padding: 24px 12px
    }

    .success-pg .msg-head {
        font-size: 24px
    }

    .success-pg .check-circle {
        width: 72px;
        height: 72px
    }

    .success-pg .check-mark {
        width: 36px;
        height: 18px;
        border-left-width: 3px;
        border-bottom-width: 3px
    }

    .success-pg .action-zone {
        flex-direction: column;
        align-items: stretch
    }

    .success-pg .detail-info {
        margin-top: 48px
    }

    .success-pg .info-grid {
        grid-template-columns: 1fr
    }
}