@import "https://fonts.googleapis.com/css2?family=Spectral:wght@300;400;600;700&display=swap";

html {
    font-size: 100%
}

body {
    margin: 0
}

.strip {
    background: #D01A52;
    border-bottom: 1px solid #d11a522e
}

.strip__pod {
    max-width: 1100px;
    margin: 0 auto;
    padding: 8px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.strip__contact-group {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap
}

.strip__contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    letter-spacing: .01em;
    transition: color .5s ease-in-out
}

.strip__contact-item:hover {
    color: #FBD50C
}

.strip__contact-item:focus {
    outline: 2px solid #FBD50C;
    outline-offset: 3px
}

.strip__contact-item svg {
    flex-shrink: 0
}

.strip__tagline {
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    font-weight: 300;
    color: #ffffffb8;
    letter-spacing: .04em;
    font-style: italic
}

.brand-deck {
    background: #fff;
    border-bottom: 3px solid #ECE9EB;
    box-shadow: 2px 5px 20px 0 #d11a5214
}

.brand-deck__pod {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px
}

.brand-deck__identity {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0
}

.brand-deck__logo-frame {
    width: 88px;
    height: 88px;
    border: 2px dashed #D01A52;
    border-radius: 4px 36px 4px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: #fff;
    box-shadow: 2px 2px 4px 0 #d11a5212;
    flex-shrink: 0
}

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

.brand-deck__wordmark {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.brand-deck__name {
    font-family: 'Spectral', Georgia, serif;
    font-size: 42px;
    font-weight: 700;
    color: #1b0a12;
    line-height: 1.2;
    letter-spacing: -.02em
}

.brand-deck__name span {
    color: #D01A52
}

.brand-deck__descriptor {
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    font-weight: 300;
    color: #6a3348;
    letter-spacing: .06em;
    text-transform: uppercase;
    line-height: 1.2
}

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

.primary-nav__item {
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    font-weight: 600;
    color: #1b0a12;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    letter-spacing: .01em;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    transition: color .5s ease-in-out, background .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative
}

.primary-nav__item::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #D01A52;
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    transition: width .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.primary-nav__item:hover {
    color: #D01A52;
    background: #d11a520d
}

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

.primary-nav__item:focus {
    outline: 2px solid #D01A52;
    outline-offset: 3px
}

.primary-nav__item--active {
    color: #D01A52
}

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

.primary-nav__arrow {
    width: 14px;
    height: 14px;
    flex-shrink: 0
}

.page-footer {
    background: #1b0a12;
    border-top: 4px solid #D01A52
}

.page-footer__upper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px
}

.page-footer__brand-cell {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
}

.page-footer__logo-frame {
    width: 80px;
    height: 80px;
    border: 2px dashed #d11a5299;
    border-radius: 36px 4px 4px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: #ffffff0f;
    box-shadow: 2px 2px 4px 0 #d11a5212
}

.page-footer__logo-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block
}

.page-footer__brand-name {
    font-family: 'Spectral', Georgia, serif;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.01em;
    line-height: 1.2
}

.page-footer__brand-name span {
    color: #D01A52
}

.page-footer__brand-sub {
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    font-weight: 300;
    color: #ffffff80;
    line-height: 1.7;
    letter-spacing: .02em
}

.page-footer__contact-cell {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.page-footer__cell-label {
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    font-weight: 600;
    color: #FBD50C;
    letter-spacing: .08em;
    text-transform: uppercase;
    line-height: 1.2
}

.page-footer__contact-link {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    font-weight: 400;
    color: #ffffffc7;
    text-decoration: none;
    line-height: 1.7;
    transition: color .5s ease-in-out;
    min-height: 44px
}

.page-footer__contact-link:hover {
    color: #FBD50C
}

.page-footer__contact-link:focus {
    outline: 2px solid #FBD50C;
    outline-offset: 3px
}

.page-footer__contact-link svg {
    flex-shrink: 0;
    margin-top: 4px
}

.page-footer__address-text {
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    font-weight: 400;
    color: #ffffff8c;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 8px
}

.page-footer__address-text svg {
    flex-shrink: 0;
    margin-top: 4px
}

.page-footer__links-cell {
    display: flex;
    flex-direction: column;
    gap: 16px
}

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

.page-footer__legal-list li {
    display: flex;
    align-items: center
}

.page-footer__legal-link {
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    font-weight: 400;
    color: #ffffffa6;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    min-height: 44px;
    letter-spacing: .01em;
    transition: color .5s ease-in-out
}

.page-footer__legal-link:hover {
    color: #FBD50C
}

.page-footer__legal-link:focus {
    outline: 2px solid #FBD50C;
    outline-offset: 3px
}

.page-footer__divider {
    max-width: 1100px;
    margin: 0 auto;
    height: 1px;
    background: #ffffff1a
}

.page-footer__bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

.page-footer__copyright {
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    font-weight: 300;
    color: #fff6;
    line-height: 1.7
}

.page-footer__copyright strong {
    color: #fff9;
    font-weight: 600
}

.consent-bar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 780px;
    background: #fff;
    border: 1px solid #ECE9EB;
    border-top: none;
    border-radius: 0 0 36px 36px;
    padding: 24px 40px;
    z-index: 4000;
    box-shadow: 2px 9px 40px 0 #d11a5224;
    transform: translateY(-100%);
    transition: transform .42s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

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

.consent-bar__description {
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    font-weight: 400;
    color: #1b0a12;
    line-height: 1.7;
    margin: 0 0 16px
}

.consent-bar__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.consent-bar__accept {
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: #D01A52;
    border: none;
    border-radius: 4px;
    padding: 8px 24px;
    min-height: 44px;
    cursor: pointer;
    letter-spacing: .02em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .5s ease-in-out, transform .45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 2px 5px 20px 0 #d11a5214
}

.consent-bar__accept:hover {
    background: #a8143f
}

.consent-bar__accept:active {
    transform: scale(0.97)
}

.consent-bar__accept:focus {
    outline: 2px solid #D01A52;
    outline-offset: 3px
}

.consent-bar__decline {
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    font-weight: 400;
    color: #6a3348;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 0;
    min-height: 44px;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .5s ease-in-out
}

.consent-bar__decline:hover {
    color: #D01A52
}

.consent-bar__decline:active {
    transform: scale(0.97)
}

.consent-bar__decline:focus {
    outline: 2px solid #D01A52;
    outline-offset: 3px
}

@media (max-width: 1024px) {
    .strip__pod {
        padding: 8px 24px
    }

    .brand-deck__pod {
        padding: 24px;
        gap: 24px
    }

    .brand-deck__name {
        font-size: 30px
    }

    .page-footer__upper {
        padding: 40px 24px 24px;
        grid-template-columns: 1fr 1fr
    }

    .page-footer__brand-cell {
        grid-column: 1 / -1
    }

    .page-footer__bottom {
        padding: 24px
    }
}

@media (max-width: 768px) {
    .strip__tagline {
        display: none
    }

    .brand-deck__pod {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 16px 24px
    }

    .primary-nav {
        justify-content: flex-start
    }

    .brand-deck__name {
        font-size: 30px
    }

    .page-footer__upper {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .page-footer__brand-cell {
        grid-column: auto
    }

    .consent-bar {
        max-width: 100%;
        border-radius: 0 0 4px 4px;
        padding: 16px 24px
    }
}

@media (max-width: 480px) {
    .strip__contact-group {
        gap: 16px
    }

    .brand-deck__pod {
        padding: 16px
    }

    .brand-deck__name {
        font-size: 22px
    }

    .brand-deck__logo-frame {
        width: 64px;
        height: 64px
    }

    .primary-nav__item {
        padding: 8px;
        font-size: 15px
    }

    .page-footer__upper {
        padding: 40px 16px 16px
    }

    .page-footer__bottom {
        padding: 16px;
        flex-direction: column;
        align-items: flex-start
    }
}

.terms-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px;
    color: #2a1f25
}

.terms-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #2a1f25
}

.terms-content ul,
.terms-content ol {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    padding-left: 24px
}

.terms-content ul {
    list-style: none;
    padding-left: 0
}

.terms-content ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
    color: #2a1f25
}

.terms-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #D01A52
}

.terms-content ol {
    list-style: decimal
}

.terms-content ol li {
    margin-bottom: 8px;
    color: #2a1f25;
    padding-left: 8px
}

.terms-content ol li::marker {
    color: #D01A52;
    font-size: 15px
}

.terms-content strong,
.terms-content b {
    font-weight: 700;
    color: #1a0f14
}

.terms-content a {
    color: #D01A52;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .5s ease-in-out, text-decoration-color .45s ease-in-out
}

.terms-content a:hover {
    color: #a01340;
    text-decoration-color: transparent
}

.terms-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    font-size: 15px;
    line-height: 1.7;
    box-shadow: 2px 5px 20px 0 #d01a5214;
    border-radius: 4px;
    overflow: hidden
}

.terms-content thead {
    background-color: #D01A52
}

.terms-content thead th {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 24px;
    text-align: left;
    letter-spacing: -.01em;
    line-height: 1.2
}

.terms-content tbody tr {
    border-bottom: 1px solid #ECE9EB;
    transition: background-color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.terms-content tbody tr:last-child {
    border-bottom: none
}

.terms-content tbody tr:nth-child(even) {
    background-color: #ece9eb73
}

.terms-content tbody tr:hover {
    background-color: #fbd50c1f
}

.terms-content td {
    padding: 16px 24px;
    color: #2a1f25;
    vertical-align: top
}

.terms-content th {
    padding: 16px 24px
}

.terms-content div {
    margin-bottom: 24px
}

@media (max-width: 768px) {
    .terms-content {
        padding: 40px 24px
    }

    .terms-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: 2px 2px 4px 0 #d01a5212
    }

    .terms-content thead th,
    .terms-content td {
        padding: 16px;
        white-space: nowrap
    }
}

@media (max-width: 480px) {
    .terms-content {
        padding: 40px 16px
    }

    .terms-content thead th,
    .terms-content td {
        padding: 8px 16px
    }
}

.news {
    background: #fff;
    overflow-x: clip;
    padding: 0
}

.news .reading {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px
}

.news .pulse-band {
    background: linear-gradient(to right, #fff 0%, #ECE9EB 60%, #fff 100%);
    padding: 40px 0;
    position: relative
}

.news .pulse-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D01A52, #FBD50C, transparent)
}

.news .pulse-band .reading {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px
}

.news .band__image-frame {
    position: relative;
    flex: 0 0 420px;
    height: 260px;
    border-radius: 4px;
    overflow: hidden
}

.news .band__image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.news .band__image-frame::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60%;
    background: linear-gradient(to left, #ECE9EB 0%, transparent 100%)
}

.news .band__ghost-number {
    position: absolute;
    bottom: -16px;
    left: 8px;
    font-size: 72px;
    font-weight: 900;
    color: #D01A52;
    opacity: .08;
    line-height: 1.2;
    letter-spacing: -4px;
    pointer-events: none;
    z-index: 0;
    user-select: none
}

.news .band__text {
    flex: 1;
    position: relative;
    z-index: 1
}

.news .band__label {
    font-size: 15px;
    color: #D01A52;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 1.2
}

.news .band__heading {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #1b1b1b;
    margin: 0 0 16px
}

.news .band__desc {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a3a;
    margin: 0;
    text-align: justify
}

.news .articles-field {
    padding: 80px 0;
    background: #fff;
    position: relative
}

.news .articles-field .reading {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px
}

.news .article-card {
    background: #fff;
    border-radius: 4px;
    box-shadow: 2px 5px 20px 0 #d01a5214;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.news .article-card:hover {
    box-shadow: 2px 9px 40px 0 #d01a5224;
    transform: translateY(-4px)
}

.news .article-card--featured {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    flex-direction: row
}

.news .article-card--featured .card__thumb {
    flex: 0 0 300px;
    height: auto
}

.news .article-card--tall {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column
}

.news .card__thumb {
    height: 180px;
    overflow: hidden;
    position: relative
}

.news .card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.news .article-card:hover .card__thumb img {
    transform: scale(1.04)
}

.news .card__thumb--tall {
    height: 220px
}

.news .card__tag {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #D01A52;
    background: #d01a5212;
    border-radius: 4px;
    padding: 4px 8px;
    margin-bottom: 8px;
    line-height: 1.2
}

.news .card__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.news .card__heading {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1b1b1b;
    margin: 0 0 8px
}

.news .card__text {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a3a;
    margin: 0 0 16px;
    text-align: justify;
    flex: 1
}

.news .card__link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #D01A52;
    text-decoration: none;
    margin-top: auto;
    transition: gap .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .45s ease-in-out
}

.news .card__link:hover {
    gap: 16px;
    color: #a01340
}

.news .card__link:active {
    transform: scale(0.97)
}

.news .card__arrow {
    width: 18px;
    height: 18px;
    display: inline-block;
    flex-shrink: 0
}

.news .article-card--small {
    grid-row: 2 / 3
}

.news .metrics-strip {
    background: #1b1b1b;
    padding: 40px 0;
    position: relative;
    overflow: hidden
}

.news .metrics-strip::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle at 0% 100%, #fbd50c1f 0%, transparent 70%);
    pointer-events: none
}

.news .metrics-strip .reading {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0
}

.news .metric-item {
    flex: 1;
    padding: 24px 40px;
    border-right: 1px solid #ffffff14;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px
}

.news .metric-item:last-child {
    border-right: none
}

.news .metric-item__number {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -.04em;
    color: #FBD50C
}

.news .metric-item__label {
    font-size: 15px;
    line-height: 1.7;
    color: #ffffffb3
}

.news .metric-item__icon {
    width: 32px;
    height: 32px;
    color: #D01A52;
    animation: float-icon 3.2s ease-in-out infinite
}

@keyframes float-icon {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }
}

.news .checklist-panel {
    padding: 80px 0;
    background: #ECE9EB;
    position: relative
}

.news .checklist-panel::before {
    content: '';
    position: absolute;
    top: 16px;
    right: 16px;
    width: 160px;
    height: 200px;
    background: repeating-linear-gradient(-45deg, transparent, transparent 6px, #d01a520d 6px, #d01a520d 7px);
    pointer-events: none;
    border-radius: 4px
}

.news .checklist-panel .reading {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start
}

.news .checklist-panel__left {
    flex: 1
}

.news .checklist-panel__heading {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1b1b1b;
    margin: 0 0 16px
}

.news .checklist-panel__desc {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a3a;
    margin: 0 0 24px;
    text-align: justify
}

.news .progress-frame {
    background: #fff;
    border-radius: 36px;
    padding: 24px;
    box-shadow: 2px 2px 4px 0 #d01a5212;
    margin-bottom: 24px
}

.news .progress-frame__top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px
}

.news .progress-frame__label {
    font-size: 15px;
    font-weight: 600;
    color: #1b1b1b;
    line-height: 1.2
}

.news .progress-frame__count {
    font-size: 15px;
    color: #D01A52;
    font-weight: 700;
    line-height: 1.2
}

.news .progress-bar-track {
    height: 8px;
    background: #ECE9EB;
    border-radius: 4px;
    overflow: hidden
}

.news .progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #D01A52, #FBD50C);
    border-radius: 4px;
    width: 57%;
    transition: width .65s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

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

.news .checklist-list__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 4px;
    padding: 16px;
    box-shadow: 2px 2px 4px 0 #d01a5212
}

.news .checklist-list__item.done .check-circle {
    background: #D01A52;
    border-color: #D01A52
}

.news .checklist-list__item.done .check-circle svg {
    opacity: 1
}

.news .checklist-list__item.done .item-text {
    color: #3a3a3a
}

.news .check-circle {
    width: 24px;
    height: 24px;
    border-radius: 36px;
    border: 2px solid #ECE9EB;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .5s ease-in-out, border-color .5s ease-in-out
}

.news .check-circle svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    opacity: 0;
    transition: opacity .45s ease-in-out
}

.news .item-text {
    font-size: 15px;
    line-height: 1.7;
    color: #888;
    flex: 1
}

.news .checklist-panel__right {
    flex: 0 0 360px;
    position: relative
}

.news .sidebar-card {
    background: #fff;
    border-radius: 36px;
    padding: 24px;
    box-shadow: 2px 9px 40px 0 #d01a5224;
    position: relative;
    overflow: hidden
}

.news .sidebar-card__accent {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 0% 100%, #fbd50c4d 0%, transparent 70%);
    pointer-events: none
}

.news .sidebar-card__heading {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1b1b1b;
    margin: 0 0 8px
}

.news .sidebar-card__text {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a3a;
    margin: 0 0 24px
}

.news .sidebar-card__image {
    width: 100%;
    height: 180px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px
}

.news .sidebar-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.news .sidebar-stat {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px
}

.news .sidebar-stat__number {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -.04em;
    color: #D01A52
}

.news .sidebar-stat__unit {
    font-size: 22px;
    font-weight: 700;
    color: #D01A52;
    line-height: 1.2
}

.news .sidebar-stat__label {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a3a
}

.news .tag-accent {
    color: #D01A52
}

.news .bracket-accent {
    color: #D01A52
}

@media (max-width: 1024px) {
    .news .pulse-band .reading {
        flex-direction: column;
        gap: 24px
    }

    .news .band__image-frame {
        flex: 0 0 auto;
        width: 100%;
        height: 220px
    }

    .news .articles-field .reading {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto
    }

    .news .article-card--featured {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        flex-direction: column
    }

    .news .article-card--featured .card__thumb {
        flex: 0 0 auto;
        height: 200px;
        width: 100%
    }

    .news .article-card--tall {
        grid-column: 1 / 2;
        grid-row: 2 / 4
    }

    .news .article-card--small {
        grid-column: 2 / 3
    }

    .news .checklist-panel .reading {
        flex-direction: column;
        gap: 40px
    }

    .news .checklist-panel__right {
        flex: 0 0 auto;
        width: 100%
    }

    .news .metrics-strip .reading {
        flex-wrap: wrap
    }

    .news .metric-item {
        flex: 0 0 50%;
        border-right: none;
        border-bottom: 1px solid #ffffff14;
        padding: 24px
    }

    .news .metric-item:nth-child(odd) {
        border-right: 1px solid #ffffff14
    }

    .news .metric-item:last-child {
        border-bottom: none
    }
}

@media (max-width: 768px) {
    .news .band__heading {
        font-size: 30px
    }

    .news .articles-field .reading {
        grid-template-columns: 1fr;
        grid-template-rows: auto
    }

    .news .article-card--featured {
        grid-column: 1 / 2
    }

    .news .article-card--tall {
        grid-column: 1 / 2;
        grid-row: auto
    }

    .news .article-card--small {
        grid-column: 1 / 2;
        grid-row: auto
    }

    .news .metrics-strip .reading {
        flex-direction: column
    }

    .news .metric-item {
        flex: 0 0 auto;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #ffffff14
    }

    .news .metric-item:last-child {
        border-bottom: none
    }
}

@media (max-width: 480px) {
    .news .reading {
        padding: 0 16px
    }

    .news .band__heading {
        font-size: 22px
    }

    .news .articles-field {
        padding: 40px 0
    }

    .news .checklist-panel {
        padding: 40px 0
    }

    .news .metric-item {
        padding: 16px
    }

    .news .metric-item__number {
        font-size: 30px
    }
}

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

.learning-program .program-frame {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px
}

.learning-program .program-frame--narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 40px
}

.learning-program .divider-dots {
    border: none;
    border-top: 1px dotted #c8c0c5;
    margin: 0
}

.learning-program .title-block {
    background: linear-gradient(circle at 0% 100%, #d01a5221 0%, #fbd50c12 45%, transparent 75%);
    padding: 80px 0;
    position: relative
}

.learning-program .title-block::before,
.learning-program .title-block::after {
    content: "";
    position: absolute;
    pointer-events: none
}

.learning-program .title-block::before {
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    border: 1px solid #d01a522e;
    border-radius: 4px
}

.learning-program .title-block::after {
    top: 24px;
    left: 24px;
    right: 24px;
    bottom: 24px;
    border: 1px solid #d01a5214;
    border-radius: 4px
}

.learning-program .title-block__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 80px
}

.learning-program .title-block__text {
    padding: 40px 0
}

.learning-program .title-block__label {
    display: inline-block;
    font-size: 15px;
    line-height: 1.2;
    color: #D01A52;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid #d01a524d;
    padding: 4px 16px;
    border-radius: 4px
}

.learning-program .title-block__heading {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -.02em;
    font-weight: 800;
    color: #1b0a12;
    margin: 0 0 24px
}

.learning-program .title-block__heading span {
    color: #D01A52
}

.learning-program .title-block__desc {
    font-size: 15px;
    line-height: 1.7;
    color: #3a2030;
    text-align: justify;
    margin: 0
}

.learning-program .title-block__visual {
    position: relative;
    padding: 16px
}

.learning-program .title-block__img-wrap {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 2px 9px 40px 0 #d01a5224
}

.learning-program .title-block__img-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.learning-program .title-block__img-wrap:hover img {
    transform: scale(1.03)
}

.learning-program .title-block__img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(circle at 0% 100%, #d01a5261 0%, transparent 60%);
    pointer-events: none
}

.learning-program .title-block__img-border {
    position: absolute;
    inset: 0;
    border: 2px solid #d01a5200;
    border-radius: 4px;
    transition: border-color .55s ease-in-out;
    pointer-events: none;
    z-index: 2
}

.learning-program .title-block__img-wrap:hover .title-block__img-border {
    border-color: #d01a52b3
}

.learning-program .title-block__dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 12px;
    height: 12px;
    background: #D01A52;
    border-radius: 50%;
    box-shadow: 2px 2px 4px 0 #d01a5212;
    animation: shadow-pulse 2.2s ease-in-out infinite;
    z-index: 3
}

@keyframes shadow-pulse {

    0%,
    100% {
        box-shadow: 2px 2px 4px 0 #d01a5212
    }

    50% {
        box-shadow: 2px 5px 20px 0 #d01a5261
    }
}

.learning-program .structure-block {
    padding: 80px 0;
    background: #ECE9EB
}

.learning-program .structure-block__head {
    max-width: 1100px;
    margin: 0 auto 40px;
    padding: 0 40px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px
}

.learning-program .structure-block__heading {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.01em;
    color: #1b0a12;
    margin: 0
}

.learning-program .structure-block__sub {
    font-size: 15px;
    line-height: 1.7;
    color: #3a2030;
    max-width: 380px;
    text-align: right;
    margin: 0
}

.learning-program .structure-block__list {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    list-style: none
}

.learning-program .module-card {
    background: #fff;
    border-radius: 4px;
    padding: 24px;
    box-shadow: 2px 5px 20px 0 #d01a5214;
    position: relative;
    transition: box-shadow .5s ease-in-out, transform .5s ease-in-out;
    overflow: hidden
}

.learning-program .module-card:hover {
    box-shadow: 2px 9px 40px 0 #d01a5224;
    transform: translateY(-4px)
}

.learning-program .module-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 8px, #d01a520f 8px, #d01a520f 9px);
    opacity: 0;
    transition: opacity .5s ease-in-out;
    pointer-events: none;
    border-radius: 4px
}

.learning-program .module-card:hover::after {
    opacity: 1
}

.learning-program .module-card__number {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #d01a521f;
    letter-spacing: -.03em;
    margin-bottom: 8px;
    display: block
}

.learning-program .module-card__title {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    color: #1b0a12;
    margin: 0 0 8px
}

.learning-program .module-card__text {
    font-size: 15px;
    line-height: 1.7;
    color: #3a2030;
    margin: 0;
    text-align: justify
}

.learning-program .module-card__icon {
    position: absolute;
    top: 16px;
    right: 16px;
    color: #D01A52;
    font-size: 18px
}

.learning-program .module-card__dot {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 8px;
    height: 8px;
    background: #FBD50C;
    border-radius: 50%
}

.learning-program .outcomes-block {
    padding: 80px 0;
    background: #fff;
    position: relative
}

.learning-program .outcomes-block__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 100%, #fbd50c17 0%, transparent 60%);
    pointer-events: none
}

.learning-program .outcomes-block__grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 80px;
    align-items: start
}

.learning-program .outcomes-block__heading {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.01em;
    color: #1b0a12;
    margin: 0 0 24px
}

.learning-program .outcomes-block__intro {
    font-size: 15px;
    line-height: 1.7;
    color: #3a2030;
    margin: 0 0 40px;
    text-align: justify
}

.learning-program .outcomes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.learning-program .outcomes-list__item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 4px;
    background: #ECE9EB;
    transition: background .5s ease-in-out
}

.learning-program .outcomes-list__item:hover {
    background: #d01a5212
}

.learning-program .outcomes-list__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #D01A52;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px
}

.learning-program .outcomes-list__text {
    font-size: 15px;
    line-height: 1.7;
    color: #1b0a12;
    margin: 0
}

.learning-program .outcomes-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative
}

.learning-program .stat-card {
    background: #1b0a12;
    border-radius: 4px;
    padding: 24px;
    box-shadow: 2px 9px 40px 0 #d01a5224
}

.learning-program .stat-card--accent {
    background: #D01A52
}

.learning-program .stat-card--yellow {
    background: #FBD50C
}

.learning-program .stat-card__value {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.03em;
    color: #fff;
    display: block;
    margin-bottom: 8px
}

.learning-program .stat-card--yellow .stat-card__value {
    color: #1b0a12
}

.learning-program .stat-card__label {
    font-size: 15px;
    line-height: 1.2;
    color: #ffffffbf
}

.learning-program .stat-card--yellow .stat-card__label {
    color: #1b0a12b3
}

.learning-program .enroll-block {
    padding: 80px 0;
    background: #ECE9EB;
    position: relative
}

.learning-program .enroll-block__pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(#d01a520f 1px, transparent 1px), linear-gradient(90deg, #d01a520f 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none
}

.learning-program .enroll-block__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative
}

.learning-program .enroll-block__card {
    background: #fff;
    border-radius: 36px;
    padding: 80px;
    box-shadow: 2px 9px 40px 0 #d01a5224;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.learning-program .enroll-block__heading {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.01em;
    color: #1b0a12;
    margin: 0 0 16px
}

.learning-program .enroll-block__text {
    font-size: 15px;
    line-height: 1.7;
    color: #3a2030;
    margin: 0 0 24px;
    text-align: justify
}

.learning-program .enroll-block__details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.learning-program .enroll-block__detail {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    line-height: 1.2;
    color: #1b0a12
}

.learning-program .enroll-block__detail i {
    color: #D01A52;
    font-size: 18px;
    flex-shrink: 0
}

.learning-program .enroll-block__actions {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start
}

.learning-program .enroll-block__price-row {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.learning-program .enroll-block__price-label {
    font-size: 15px;
    line-height: 1.2;
    color: #3a2030
}

.learning-program .enroll-block__price {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.03em;
    color: #D01A52
}

.learning-program .enroll-block__price sup {
    font-size: 22px;
    vertical-align: super;
    font-weight: 700
}

.learning-program .btn-primary {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: #D01A52;
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 2px 5px 20px 0 #d01a5214;
    transition: box-shadow .5s ease-in-out, background .45s ease-in-out;
    box-shadow: inset 0 1px 0 #ffffff26 inset 0 -2px 0 #0000001a 2px 5px 20px 0 #d01a5214
}

.learning-program .btn-primary:hover {
    background: #b81645;
    box-shadow: inset 0 1px 0 #ffffff26 inset 0 -2px 0 #0000001a 2px 9px 40px 0 #d01a5224
}

.learning-program .btn-primary:active {
    transform: scale(0.97)
}

.learning-program .btn-primary i {
    font-size: 16px
}

.learning-program .btn-secondary {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #D01A52;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    padding: 16px 0;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: gap .5s ease-in-out
}

.learning-program .btn-secondary:hover {
    gap: 16px
}

.learning-program .btn-secondary i {
    font-size: 16px
}

@media (max-width: 1024px) {
    .learning-program .title-block__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 40px
    }

    .learning-program .title-block__img-wrap img {
        height: 280px
    }

    .learning-program .structure-block__list {
        grid-template-columns: repeat(2, 1fr)
    }

    .learning-program .outcomes-block__grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .learning-program .enroll-block__card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px
    }

    .learning-program .structure-block__head {
        flex-direction: column;
        align-items: flex-start
    }

    .learning-program .structure-block__sub {
        text-align: left;
        max-width: 100%
    }
}

@media (max-width: 768px) {
    .learning-program .program-frame {
        padding: 0 24px
    }

    .learning-program .title-block {
        padding: 40px 0
    }

    .learning-program .title-block__grid {
        padding: 0 24px;
        gap: 24px
    }

    .learning-program .title-block__heading {
        font-size: 30px
    }

    .learning-program .structure-block {
        padding: 40px 0
    }

    .learning-program .structure-block__list {
        grid-template-columns: 1fr;
        padding: 0 24px
    }

    .learning-program .structure-block__head {
        padding: 0 24px
    }

    .learning-program .outcomes-block {
        padding: 40px 0
    }

    .learning-program .outcomes-block__grid {
        padding: 0 24px
    }

    .learning-program .enroll-block {
        padding: 40px 0
    }

    .learning-program .enroll-block__inner {
        padding: 0 24px
    }

    .learning-program .enroll-block__card {
        border-radius: 4px;
        padding: 24px
    }
}

@media (max-width: 480px) {
    .learning-program .title-block__heading {
        font-size: 22px
    }

    .learning-program .outcomes-block__heading,
    .learning-program .structure-block__heading,
    .learning-program .enroll-block__heading {
        font-size: 22px
    }

    .learning-program .enroll-block__price {
        font-size: 30px
    }

    .learning-program .stat-card__value {
        font-size: 30px
    }

    .learning-program .title-block::before {
        display: none
    }

    .learning-program .title-block::after {
        display: none
    }
}

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

.contact-us .form-editorial {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px
}

.contact-us .form-editorial__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start
}

.contact-us .form-editorial__label-tag {
    display: inline-block;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: .08em;
    color: #D01A52;
    border: 1px solid #d01a524d;
    padding: 4px 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    text-transform: uppercase
}

.contact-us .form-editorial__heading {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1b1b1b;
    margin: 0 0 16px;
    font-weight: 800
}

.contact-us .form-editorial__subtext {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a3a;
    margin: 0 0 40px;
    text-align: justify
}

.contact-us .form-editorial__field {
    margin-bottom: 24px
}

.contact-us .form-editorial__field-label {
    display: block;
    font-size: 15px;
    line-height: 1.2;
    color: #1b1b1b;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: .01em
}

.contact-us .form-editorial__input {
    width: 100%;
    padding: 16px;
    font-size: 15px;
    line-height: 1.7;
    color: #1b1b1b;
    background: #fff;
    border: 1.5px solid #d01a522e;
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: 2px 2px 4px 0 #d01a5212;
    transition: border-color .5s ease-in-out, box-shadow .5s ease-in-out;
    outline: none;
    appearance: none
}

.contact-us .form-editorial__input::placeholder {
    color: #aaa
}

.contact-us .form-editorial__input:focus {
    border-color: #D01A52;
    box-shadow: 2px 5px 20px 0 #d01a5214
}

.contact-us .form-editorial__channel-group {
    margin-bottom: 24px
}

.contact-us .form-editorial__channel-label {
    display: block;
    font-size: 15px;
    line-height: 1.2;
    color: #1b1b1b;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: .01em
}

.contact-us .form-editorial__channels {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap
}

.contact-us .form-editorial__channel-option {
    position: relative
}

.contact-us .form-editorial__channel-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.contact-us .form-editorial__channel-option label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 4px;
    border: 1.5px solid #d01a5233;
    font-size: 15px;
    line-height: 1.2;
    color: #3a3a3a;
    cursor: pointer;
    background: #fff;
    transition: background .5s ease-in-out, border-color .5s ease-in-out, color .5s ease-in-out
}

.contact-us .form-editorial__channel-option input[type="radio"]:checked+label {
    background: #D01A52;
    border-color: #D01A52;
    color: #fff
}

.contact-us .form-editorial__channel-option label:hover {
    border-color: #D01A52;
    background: #d01a520f
}

.contact-us .form-editorial__channel-option input[type="radio"]:checked+label:hover {
    background: #D01A52;
    color: #fff
}

.contact-us .form-editorial__channel-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.contact-us .form-editorial__privacy {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 24px
}

.contact-us .form-editorial__privacy input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: #D01A52;
    cursor: pointer
}

.contact-us .form-editorial__privacy-text {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a3a
}

.contact-us .form-editorial__privacy-text a {
    color: #D01A52;
    text-decoration: underline;
    transition: color .5s ease-in-out
}

.contact-us .form-editorial__privacy-text a:hover {
    color: #a01440
}

.contact-us .form-editorial__submit {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: #D01A52;
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 16px 40px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 2px 5px 20px 0 #d01a5214;
    transition: background .5s ease-in-out, box-shadow .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .18s ease-in-out
}

.contact-us .form-editorial__submit:hover {
    background: #a01440;
    box-shadow: 2px 9px 40px 0 #d01a5224
}

.contact-us .form-editorial__submit:active {
    transform: scale(0.97)
}

.contact-us .form-editorial__submit:focus-visible {
    outline: 2px solid #FBD50C;
    outline-offset: 3px
}

.contact-us .form-editorial__aside {
    padding-top: 8px
}

.contact-us .form-editorial__aside-image {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 40px;
    position: relative
}

.contact-us .form-editorial__aside-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 4px
}

.contact-us .form-editorial__aside-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, #1b1b1b8c, transparent);
    border-radius: 0 0 4px 4px;
    pointer-events: none
}

.contact-us .form-editorial__quote {
    font-size: 22px;
    line-height: 1.2;
    color: #1b1b1b;
    font-weight: 700;
    letter-spacing: -.01em;
    margin: 0 0 24px
}

.contact-us .form-editorial__quote .accent-bracket {
    color: #D01A52
}

.contact-us .form-editorial__response-note {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a3a;
    background: #fbd50c21;
    border-radius: 4px;
    padding: 16px;
    box-shadow: inset 0 2px 0 0 #fbd50c59 inset 0 -2px 0 0 #fbd50c1f
}

.contact-us .details-band {
    background: #ECE9EB;
    position: relative
}

.contact-us .details-band__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start
}

.contact-us .details-band__item {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.contact-us .details-band__icon-ring {
    width: 48px;
    height: 48px;
    border-radius: 36px;
    background: #D01A52;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 3px #d01a522e;
    margin-bottom: 8px;
    flex-shrink: 0
}

.contact-us .details-band__icon-ring svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.contact-us .details-band__item-label {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    color: #1b1b1b;
    letter-spacing: .03em;
    text-transform: uppercase
}

.contact-us .details-band__item-value {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a3a
}

.contact-us .details-band__item-value a {
    color: #D01A52;
    text-decoration: none;
    transition: color .5s ease-in-out
}

.contact-us .details-band__item-value a:hover {
    color: #a01440;
    text-decoration: underline
}

.contact-us .details-band__dot-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40%;
    overflow: hidden;
    pointer-events: none
}

.contact-us .details-band__dot-canvas {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 320px;
    height: 320px;
    opacity: .18
}

.contact-us .split-band {
    position: relative
}

.contact-us .split-band__top-half {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: #fff;
    z-index: 0
}

.contact-us .split-band__bottom-half {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: #1b1b1b;
    z-index: 0
}

.contact-us .split-band__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center
}

.contact-us .split-band__image-frame {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 2px 9px 40px 0 #d01a5224
}

.contact-us .split-band__image-frame img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block
}

.contact-us .split-band__text-col {
    padding: 40px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 2px 5px 20px 0 #d01a5214
}

.contact-us .split-band__eyebrow {
    font-size: 15px;
    line-height: 1.2;
    color: #D01A52;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 16px
}

.contact-us .split-band__heading {
    font-size: 30px;
    line-height: 1.2;
    color: #1b1b1b;
    font-weight: 800;
    letter-spacing: -.01em;
    margin: 0 0 16px
}

.contact-us .split-band__body {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a3a;
    text-align: justify;
    margin: 0 0 16px
}

.contact-us .split-band__body:last-child {
    margin-bottom: 0
}

.contact-us .split-band__viber-link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 8px 16px;
    border-radius: 4px;
    background: #d01a5212;
    color: #D01A52;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background .5s ease-in-out, color .5s ease-in-out
}

.contact-us .split-band__viber-link:hover {
    background: #D01A52;
    color: #fff
}

.contact-us .split-band__viber-link svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(28px) scale(0.97)
    }

    65% {
        opacity: 1;
        transform: translateY(-6px) scale(1.01)
    }

    80% {
        transform: translateY(3px) scale(0.995)
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

.contact-us .form-editorial__grid {
    animation: bounceIn .6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
}

.contact-us .details-band__item {
    animation: bounceIn .55s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
}

.contact-us .details-band__item:nth-child(2) {
    animation-delay: .08s
}

.contact-us .details-band__item:nth-child(3) {
    animation-delay: .16s
}

@media (max-width: 1024px) {
    .contact-us .form-editorial__grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .contact-us .details-band__inner {
        grid-template-columns: 1fr 1fr
    }

    .contact-us .split-band__inner {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .contact-us .split-band__top-half,
    .contact-us .split-band__bottom-half {
        display: none
    }

    .contact-us .split-band {
        background: #fff
    }
}

@media (max-width: 768px) {
    .contact-us .form-editorial {
        padding: 40px 16px
    }

    .contact-us .form-editorial__heading {
        font-size: 30px
    }

    .contact-us .details-band__inner {
        grid-template-columns: 1fr;
        padding: 40px 16px
    }

    .contact-us .split-band__inner {
        padding: 40px 16px
    }

    .contact-us .split-band__text-col {
        padding: 24px 16px
    }

    .contact-us .form-editorial__channels {
        flex-direction: column
    }

    .contact-us .form-editorial__aside-image img {
        height: 220px
    }
}

@media (max-width: 480px) {
    .contact-us .form-editorial__heading {
        font-size: 22px
    }

    .contact-us .form-editorial__quote {
        font-size: 15px
    }

    .contact-us .split-band__heading {
        font-size: 22px
    }

    .contact-us .form-editorial__submit {
        width: 100%;
        justify-content: center
    }
}

.prime {
    background-color: #fff;
    overflow-x: clip;
    position: relative
}

.prime .prime__schema {
    display: none
}

@keyframes gradientBreath {
    0% {
        background-color: #fff
    }

    40% {
        background-color: #fff8f0
    }

    70% {
        background-color: #fff0f5
    }

    100% {
        background-color: #fff
    }
}

.prime .rated-strip {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 8px 24px;
    background-color: #D01A52;
    justify-content: center
}

.prime .rated-strip__label {
    font-size: 15px;
    color: #fff;
    line-height: 1.2;
    letter-spacing: .04em
}

.prime .rated-strip__stars {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center
}

.prime .rated-strip__star {
    width: 14px;
    height: 14px;
    fill: #FBD50C
}

.prime .rated-strip__score {
    font-size: 15px;
    color: #FBD50C;
    font-weight: 700;
    line-height: 1.2
}

.prime .spotlight {
    position: relative;
    padding: 80px 40px;
    background: radial-gradient(circle at 0% 100%, #d01a5221 0%, transparent 65%);
    animation: gradientBreath 8s ease-in-out infinite;
    max-width: 100%;
    overflow: hidden
}

.prime .spotlight__decor-quote {
    position: absolute;
    top: 24px;
    left: 40px;
    font-size: 220px;
    line-height: 1;
    color: #d01a520f;
    font-weight: 900;
    pointer-events: none;
    user-select: none;
    z-index: 0
}

.prime .spotlight__decor-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 80px 80px 0;
    border-color: transparent #FBD50C transparent transparent;
    pointer-events: none
}

.prime .spotlight__decor-corner--bl {
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    border-width: 60px 0 0 60px;
    border-color: transparent transparent transparent #d01a521f
}

.prime .spotlight__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    align-items: center
}

.prime .spotlight__text {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.prime .spotlight__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.2;
    color: #D01A52;
    letter-spacing: .08em
}

.prime .spotlight__eyebrow-line {
    display: block;
    width: 32px;
    height: 2px;
    background-color: #D01A52
}

.prime .spotlight__h1 {
    font-size: 72px;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #1a0a10;
    font-weight: 900;
    margin: 0
}

.prime .spotlight__h1 em {
    font-style: normal;
    color: #D01A52
}

.prime .spotlight__desc {
    font-size: 22px;
    line-height: 1.7;
    color: #3a2030;
    margin: 0;
    text-align: justified
}

.prime .spotlight__image-frame {
    position: relative
}

.prime .spotlight__image-wrap {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 36px 4px 36px 4px;
    clip-path: polygon(0 6%, 6% 0, 100% 0, 100% 94%, 94% 100%, 0 100%);
    box-shadow: 2px 9px 40px 0 #d01a5224
}

.prime .spotlight__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: .88
}

.prime .spotlight__image-badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background-color: #FBD50C;
    border-radius: 4px;
    padding: 16px;
    box-shadow: 2px 5px 20px 0 #fbd50c14
}

.prime .spotlight__image-badge-text {
    font-size: 15px;
    line-height: 1.2;
    color: #1a0a10;
    font-weight: 700
}

.prime .divider-tri {
    width: 100%;
    line-height: 0;
    overflow: hidden
}

.prime .divider-tri svg {
    display: block;
    width: 100%
}

.prime .outcomes {
    padding: 80px 40px;
    background-color: #ECE9EB;
    position: relative
}

.prime .outcomes__decor-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 0
}

.prime .outcomes__decor-lines::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(-45deg, #d01a520a 0px, #d01a520a 1px, transparent 1px, transparent 18px)
}

.prime .outcomes__inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.prime .outcomes__label {
    font-size: 15px;
    line-height: 1.2;
    color: #D01A52;
    letter-spacing: .08em;
    margin-bottom: 16px
}

.prime .outcomes__heading {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1a0a10;
    font-weight: 800;
    margin: 0 0 40px;
    max-width: 600px
}

.prime .outcomes__cols {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    gap: 24px;
    align-items: start
}

.prime .outcomes__featured {
    background-color: #fff;
    border-radius: 4px;
    padding: 40px;
    box-shadow: 2px 5px 20px 0 #d01a5214;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.prime .outcomes__featured-accent {
    font-size: 72px;
    line-height: 1.2;
    font-weight: 900;
    color: #D01A52;
    letter-spacing: -.04em
}

.prime .outcomes__featured-label {
    font-size: 22px;
    line-height: 1.7;
    color: #1a0a10;
    font-weight: 700
}

.prime .outcomes__featured-text {
    font-size: 15px;
    line-height: 1.7;
    color: #3a2030;
    text-align: justify
}

.prime .outcomes__stat {
    background-color: #D01A52;
    border-radius: 4px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start
}

.prime .outcomes__stat--alt {
    background-color: #1a0a10
}

.prime .outcomes__stat--yellow {
    background-color: #FBD50C !important
}

.prime .outcomes__stat-num {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.03em
}

.prime .outcomes__stat--yellow .outcomes__stat-num {
    color: #1a0a10
}

.prime .outcomes__stat-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #ffffffd9
}

.prime .outcomes__stat--yellow .outcomes__stat-desc {
    color: #1a0a10
}

.prime .gap-block {
    padding: 80px 40px;
    background-color: #fff;
    position: relative
}

.prime .gap-block__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start
}

.prime .gap-block__left {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.prime .gap-block__label {
    font-size: 15px;
    color: #D01A52;
    letter-spacing: .08em;
    line-height: 1.2
}

.prime .gap-block__heading {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1a0a10;
    font-weight: 800;
    margin: 0
}

.prime .gap-block__body {
    font-size: 15px;
    line-height: 1.7;
    color: #3a2030;
    text-align: justify
}

.prime .gap-block__image-wrap {
    width: 100%;
    border-radius: 36px 4px;
    overflow: hidden;
    box-shadow: 2px 5px 20px 0 #d01a5214
}

.prime .gap-block__image-wrap img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    opacity: .15
}

.prime .gap-block__image-overlay {
    padding: 40px;
    background-color: #1a0a10;
    margin-top: -4px;
    border-radius: 0 0 36px 4px
}

.prime .gap-block__image-overlay-text {
    font-size: 22px;
    line-height: 1.7;
    color: #FBD50C;
    font-weight: 700
}

.prime .gap-block__timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative
}

.prime .gap-block__timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #D01A52, #d01a5226);
    transform: translateX(-50%)
}

.prime .gap-block__titem {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    align-items: start;
    gap: 0;
    margin-bottom: 40px
}

.prime .gap-block__titem:last-child {
    margin-bottom: 0
}

.prime .gap-block__titem-left {
    padding-right: 16px;
    text-align: right
}

.prime .gap-block__titem-right {
    padding-left: 16px
}

.prime .gap-block__titem-empty {
    display: block
}

.prime .gap-block__tnode {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2
}

.prime .gap-block__tnode-dot {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background-color: #D01A52;
    transform: rotate(45deg);
    box-shadow: 2px 2px 4px 0 #d01a5212;
    margin-top: 4px
}

.prime .gap-block__titem-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a0a10;
    line-height: 1.2;
    margin-bottom: 4px
}

.prime .gap-block__titem-text {
    font-size: 15px;
    line-height: 1.7;
    color: #3a2030
}

.prime .approach {
    padding: 80px 40px;
    background-color: #1a0a10;
    position: relative;
    overflow: hidden
}

.prime .approach__spotlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #d01a521f 0%, transparent 70%);
    pointer-events: none
}

.prime .approach__inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.prime .approach__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 80px
}

.prime .approach__label {
    font-size: 15px;
    color: #FBD50C;
    letter-spacing: .08em;
    line-height: 1.2;
    margin-bottom: 16px
}

.prime .approach__heading {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #fff;
    font-weight: 800;
    margin: 0
}

.prime .approach__desc {
    font-size: 15px;
    line-height: 1.7;
    color: #ffffffbf;
    text-align: justify;
    align-self: end
}

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

.prime .approach__grid::before {
    content: "";
    position: absolute;
    top: 48px;
    left: calc(16.66% + 24px);
    right: calc(16.66% + 24px);
    height: 2px;
    background: linear-gradient(to right, #fbd50c4d, #d01a5266, #fbd50c4d);
    pointer-events: none
}

.prime .approach__item {
    background-color: #ffffff0d;
    border-radius: 4px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid #ffffff14;
    transition: background-color .55s ease-in-out, border-color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative
}

.prime .approach__item:hover {
    background-color: #d01a521f;
    border-color: #d01a5259
}

.prime .approach__item-icon {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    background-color: #D01A52;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 2px 5px 20px 0 #d01a5214
}

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

.prime .approach__item-title {
    font-size: 22px;
    line-height: 1.2;
    color: #fff;
    font-weight: 700
}

.prime .approach__item-text {
    font-size: 15px;
    line-height: 1.7;
    color: #ffffffb3;
    text-align: justify
}

.prime .approach__connector-label {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FBD50C;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 15px;
    font-weight: 700;
    color: #1a0a10;
    white-space: nowrap;
    display: none
}

.prime .approach__item--mid .approach__connector-label {
    display: block
}

.prime .support {
    padding: 80px 40px;
    background-color: #ECE9EB;
    position: relative
}

.prime .support__inner {
    max-width: 1100px;
    margin: 0 auto
}

.prime .support__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start
}

.prime .support__image-col {
    position: relative
}

.prime .support__image-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 36px 4px;
    box-shadow: 2px 9px 40px 0 #d01a5224
}

.prime .support__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: .12
}

.prime .support__image-fill {
    position: absolute;
    inset: 0;
    border-radius: 36px 4px;
    background: linear-gradient(160deg, #d01a52d9 0%, #1a0a10f2 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    gap: 16px
}

.prime .support__image-quote {
    font-size: 22px;
    line-height: 1.7;
    color: #fff;
    font-weight: 700
}

.prime .support__image-attr {
    font-size: 15px;
    color: #FBD50C;
    line-height: 1.2
}

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

.prime .support__label {
    font-size: 15px;
    color: #D01A52;
    letter-spacing: .08em;
    line-height: 1.2
}

.prime .support__heading {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1a0a10;
    font-weight: 800;
    margin: 0
}

.prime .support__body {
    font-size: 15px;
    line-height: 1.7;
    color: #3a2030;
    text-align: justify
}

.prime .support__items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px
}

.prime .support__item {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    background-color: #fff;
    border-radius: 4px;
    padding: 16px;
    box-shadow: 2px 2px 4px 0 #d01a5212;
    transition: box-shadow .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .45s ease-in-out
}

.prime .support__item:hover {
    box-shadow: 2px 5px 20px 0 #d01a5214;
    transform: translateY(-2px)
}

.prime .support__item-icon {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: #d01a5214;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.prime .support__item-icon svg {
    width: 20px;
    height: 20px;
    stroke: #D01A52;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.prime .support__item-text {
    font-size: 15px;
    line-height: 1.7;
    color: #3a2030
}

.prime .support__item-text strong {
    color: #1a0a10;
    display: block;
    font-size: 15px;
    line-height: 1.2;
    margin-bottom: 4px
}

.prime .divider-tri--up svg {
    transform: scaleY(-1)
}

.prime .team {
    padding: 80px 40px;
    background-color: #fff;
    position: relative
}

.prime .team__decor-corner {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 80px 80px 0 0;
    border-color: #ECE9EB transparent transparent;
    pointer-events: none
}

.prime .team__inner {
    max-width: 1100px;
    margin: 0 auto
}

.prime .team__top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 40px
}

.prime .team__label {
    font-size: 15px;
    color: #D01A52;
    letter-spacing: .08em;
    line-height: 1.2;
    margin-bottom: 16px
}

.prime .team__heading {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1a0a10;
    font-weight: 800;
    margin: 0
}

.prime .team__intro {
    font-size: 15px;
    line-height: 1.7;
    color: #3a2030;
    max-width: 420px;
    text-align: justify
}

.prime .team__link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #D01A52;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: .04em;
    transition: gap .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .45s ease-in-out;
    white-space: nowrap
}

.prime .team__link:hover {
    gap: 16px;
    color: #a01040
}

.prime .team__link svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

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

.prime .team__card {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 2px 5px 20px 0 #d01a5214;
    transition: box-shadow .6s ease-in-out, transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.prime .team__card:hover {
    box-shadow: 2px 9px 40px 0 #d01a5224;
    transform: translateY(-4px)
}

.prime .team__card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative
}

.prime .team__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: .12
}

.prime .team__card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #d01a52b3 0%, #1a0a10d9 100%);
    display: flex;
    align-items: center;
    justify-content: center
}

.prime .team__card-initials {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1.2
}

.prime .team__card-body {
    padding: 24px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.prime .team__card-name {
    font-size: 22px;
    font-weight: 700;
    color: #1a0a10;
    line-height: 1.2
}

.prime .team__card-role {
    font-size: 15px;
    color: #D01A52;
    line-height: 1.2;
    font-weight: 600
}

.prime .team__card-bio {
    font-size: 15px;
    line-height: 1.7;
    color: #3a2030;
    text-align: justify
}

.prime .team__card-accent {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: #fbd50c2e;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 15px;
    color: #1a0a10;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 4px
}

.prime .team__card-accent svg {
    width: 14px;
    height: 14px;
    stroke: #D01A52;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

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

    .prime .spotlight__h1 {
        font-size: 42px
    }

    .prime .outcomes__cols {
        grid-template-columns: 1fr 1fr
    }

    .prime .outcomes__featured {
        grid-column: 1 / -1
    }

    .prime .gap-block__inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .prime .approach__top {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .prime .approach__grid {
        grid-template-columns: 1fr
    }

    .prime .approach__grid::before {
        display: none
    }

    .prime .support__layout {
        grid-template-columns: 1fr
    }

    .prime .team__grid {
        grid-template-columns: 1fr 1fr
    }

    .prime .team__top {
        flex-direction: column;
        align-items: flex-start
    }
}

@media (max-width: 768px) {
    .prime .spotlight {
        padding: 40px 24px
    }

    .prime .spotlight__h1 {
        font-size: 30px
    }

    .prime .spotlight__decor-quote {
        font-size: 120px
    }

    .prime .outcomes {
        padding: 40px 24px
    }

    .prime .outcomes__cols {
        grid-template-columns: 1fr
    }

    .prime .outcomes__heading {
        font-size: 30px
    }

    .prime .gap-block {
        padding: 40px 24px
    }

    .prime .gap-block__heading {
        font-size: 30px
    }

    .prime .gap-block__titem {
        grid-template-columns: 1fr
    }

    .prime .gap-block__timeline::before {
        display: none
    }

    .prime .gap-block__tnode {
        display: none
    }

    .prime .gap-block__titem-left {
        text-align: left;
        padding-right: 0
    }

    .prime .approach {
        padding: 40px 24px
    }

    .prime .approach__heading {
        font-size: 30px
    }

    .prime .support {
        padding: 40px 24px
    }

    .prime .support__heading {
        font-size: 30px
    }

    .prime .team {
        padding: 40px 24px
    }

    .prime .team__heading {
        font-size: 30px
    }

    .prime .team__grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 480px) {
    .prime .spotlight__h1 {
        font-size: 30px
    }

    .prime .outcomes__featured-accent {
        font-size: 42px
    }

    .prime .rated-strip {
        flex-direction: column;
        gap: 8px;
        padding: 16px 24px
    }
}

.about-us {
    background: #fff;
    overflow-x: clip;
    position: relative
}

.about-us .panel {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px
}

.about-us .title-block {
    position: relative;
    padding: 80px 0;
    background: #ECE9EB;
    overflow: hidden
}

.about-us .title-block__corner {
    position: absolute;
    pointer-events: none
}

.about-us .title-block__corner--tr {
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    border-top: 1px solid #D01A52;
    border-right: 1px solid #D01A52
}

.about-us .title-block__corner--bl {
    bottom: 0;
    left: 0;
    width: 80px;
    height: 80px;
    border-bottom: 1px solid #FBD50C;
    border-left: 1px solid #FBD50C
}

.about-us .title-block__row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 40px
}

.about-us .title-block__text {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px 0
}

.about-us .title-block__label {
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: .12em;
    color: #D01A52;
    text-transform: uppercase
}

.about-us .title-block__heading {
    font-size: 72px;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #1a0a14;
    margin: 0;
    font-weight: 900
}

.about-us .title-block__heading span {
    display: block
}

.about-us .title-block__heading span:nth-child(2) {
    font-size: 42px;
    color: #D01A52
}

.about-us .title-block__heading span:nth-child(3) {
    font-size: 30px;
    font-weight: 700;
    color: #3d1a2a
}

.about-us .title-block__body {
    font-size: 15px;
    line-height: 1.7;
    color: #3d1a2a;
    max-width: 480px;
    text-align: justify
}

.about-us .title-block__image-col {
    flex: 0 0 420px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    min-height: 420px
}

.about-us .title-block__image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.about-us .title-block__image-col:hover img {
    transform: scale(1.04)
}

.about-us .title-block__gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, #d01a5259 0%, transparent 100%);
    pointer-events: none
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px)
    }

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

.about-us .title-block__label {
    animation: slideUp .55s cubic-bezier(0.25, 0.46, 0.45, 0.94) .05s both
}

.about-us .title-block__heading {
    animation: slideUp .6s cubic-bezier(0.25, 0.46, 0.45, 0.94) .15s both
}

.about-us .title-block__body {
    animation: slideUp .65s cubic-bezier(0.25, 0.46, 0.45, 0.94) .25s both
}

.about-us .title-block__image-col {
    animation: slideUp .6s cubic-bezier(0.25, 0.46, 0.45, 0.94) .1s both
}

.about-us .divider {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    height: 2px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px
}

.about-us .divider__line {
    flex: 1 1 0;
    height: 1px;
    background: #ECE9EB
}

.about-us .divider__accent {
    flex: 0 0 80px;
    height: 2px;
    background: #D01A52;
    border-radius: 4px
}

.about-us .story {
    padding: 80px 0;
    background: #fff
}

.about-us .story__row {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start
}

.about-us .story__left {
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.about-us .story__heading {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1a0a14;
    font-weight: 800;
    margin: 0
}

.about-us .story__accent {
    color: #D01A52
}

.about-us .story__founded {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #ECE9EB;
    border-radius: 4px;
    font-size: 15px;
    color: #3d1a2a;
    background: #ECE9EB;
    font-weight: 600
}

.about-us .story__founded i {
    color: #D01A52;
    font-size: 15px
}

.about-us .story__image-wrap {
    flex: 0 0 280px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 2px 9px 40px 0 #d01a5224;
    position: relative
}

.about-us .story__image-wrap img {
    width: 280px;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform .55s ease-in-out
}

.about-us .story__image-wrap:hover img {
    transform: scale(1.03)
}

.about-us .story__right {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.about-us .story__body {
    font-size: 15px;
    line-height: 1.7;
    color: #3d1a2a;
    text-align: justify;
    margin: 0
}

.about-us .story__metrics {
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 24px;
    background: #ECE9EB;
    border-radius: 36px;
    box-shadow: 2px 2px 4px 0 #d01a5212
}

.about-us .story__metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1 1 0;
    align-items: center
}

.about-us .story__metric-ring {
    position: relative;
    width: 64px;
    height: 64px;
    margin-bottom: 8px
}

.about-us .story__metric-ring svg {
    width: 64px;
    height: 64px;
    transform: rotate(-90deg)
}

.about-us .story__metric-ring .ring-bg {
    fill: none;
    stroke: #fff;
    stroke-width: 4
}

.about-us .story__metric-ring .ring-fill {
    fill: none;
    stroke: #D01A52;
    stroke-width: 4;
    stroke-linecap: round;
    transition: stroke-dashoffset .65s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.about-us .story__metric-ring .ring-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    font-size: 15px;
    font-weight: 800;
    color: #D01A52;
    line-height: 1.2
}

.about-us .story__metric-name {
    font-size: 15px;
    color: #3d1a2a;
    text-align: center;
    line-height: 1.2
}

.about-us .team {
    padding: 80px 0;
    background: #ECE9EB;
    position: relative
}

.about-us .team__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 100%, #fbd50c2e 0%, transparent 60%);
    pointer-events: none
}

.about-us .team__heading {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1a0a14;
    font-weight: 800;
    margin: 0 0 8px
}

.about-us .team__sub {
    font-size: 15px;
    line-height: 1.7;
    color: #3d1a2a;
    margin: 0 0 40px;
    max-width: 560px
}

.about-us .team__grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr 1fr;
    gap: 24px;
    align-items: start
}

.about-us .team__card {
    background: #fff;
    border-radius: 36px;
    padding: 40px 24px 24px;
    box-shadow: 2px 5px 20px 0 #d01a5214;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
    position: relative;
    z-index: 1
}

.about-us .team__card:hover,
.about-us .team__card:focus-within {
    transform: translateY(-8px);
    box-shadow: 2px 9px 40px 0 #d01a5224;
    z-index: 2
}

.about-us .team__card--center {
    padding-top: 24px;
    padding-bottom: 16px
}

.about-us .team__card-role {
    font-size: 15px;
    color: #D01A52;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase
}

.about-us .team__card-name {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
    color: #1a0a14;
    margin: 0
}

.about-us .team__card-bio {
    font-size: 15px;
    line-height: 1.7;
    color: #3d1a2a;
    text-align: justify;
    margin: 0
}

.about-us .team__card-tag {
    display: inline-block;
    padding: 4px 16px;
    background: #FBD50C;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    color: #1a0a14;
    align-self: flex-start
}

.about-us .approach {
    padding: 80px 0;
    background: #fff;
    position: relative
}

.about-us .approach__dashed {
    border: 2px dashed #D01A52;
    border-radius: 36px;
    padding: 40px;
    position: relative;
    background: #fbd50c0f
}

.about-us .approach__dashed-label {
    position: absolute;
    top: -15px;
    left: 40px;
    background: #fff;
    padding: 0 16px;
    font-size: 15px;
    color: #D01A52;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase
}

.about-us .approach__row {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start
}

.about-us .approach__left {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.about-us .approach__heading {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -.02em;
    font-weight: 800;
    color: #1a0a14;
    margin: 0
}

.about-us .approach__body {
    font-size: 15px;
    line-height: 1.7;
    color: #3d1a2a;
    text-align: justify;
    margin: 0
}

.about-us .approach__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.about-us .approach__list-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 2px 2px 4px 0 #d01a5212;
    transition: box-shadow .5s ease-in-out
}

.about-us .approach__list-item:hover {
    box-shadow: 2px 5px 20px 0 #d01a5214
}

.about-us .approach__num {
    flex: 0 0 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #D01A52;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    color: #D01A52;
    position: relative;
    background: #fff
}

.about-us .approach__num::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid #d01a5233
}

.about-us .approach__item-text {
    font-size: 15px;
    line-height: 1.7;
    color: #3d1a2a;
    flex: 1 1 0
}

.about-us .approach__item-text strong {
    color: #1a0a14;
    font-weight: 700
}

.about-us .approach__right {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.about-us .approach__image-wrap {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 2px 9px 40px 0 #d01a5224
}

.about-us .approach__image-wrap img {
    width: 320px;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease-in-out
}

.about-us .approach__image-wrap:hover img {
    transform: scale(1.04)
}

.about-us .approach__capacity {
    background: #1a0a14;
    border-radius: 4px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.about-us .approach__cap-label {
    font-size: 15px;
    color: #ECE9EB;
    font-weight: 600
}

.about-us .approach__cap-bar-wrap {
    background: #ffffff1f;
    border-radius: 4px;
    height: 8px;
    overflow: hidden
}

.about-us .approach__cap-bar {
    height: 100%;
    background: linear-gradient(90deg, #D01A52, #FBD50C);
    border-radius: 4px;
    width: 74%;
    transition: width .65s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.about-us .approach__cap-stats {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

.about-us .approach__cap-used {
    font-size: 22px;
    font-weight: 800;
    color: #FBD50C
}

.about-us .approach__cap-total {
    font-size: 15px;
    color: #ECE9EB
}

.about-us .approach__cap-note {
    font-size: 15px;
    color: #ece9ebb3;
    line-height: 1.7
}

@media (max-width: 1024px) {
    .about-us .title-block__image-col {
        flex: 0 0 320px;
        min-height: 320px
    }

    .about-us .title-block__heading {
        font-size: 52px
    }

    .about-us .story__row {
        gap: 40px
    }

    .about-us .story__left {
        flex: 0 0 260px
    }

    .about-us .story__image-wrap {
        flex: 0 0 220px
    }

    .about-us .story__image-wrap img {
        width: 220px;
        height: 280px
    }

    .about-us .team__grid {
        grid-template-columns: 1fr 1fr
    }

    .about-us .team__card--center {
        grid-column: span 2
    }

    .about-us .approach__right {
        flex: 0 0 260px
    }

    .about-us .approach__image-wrap img {
        width: 260px;
        height: 220px
    }
}

@media (max-width: 768px) {
    .about-us .title-block__row {
        flex-direction: column-reverse;
        gap: 24px
    }

    .about-us .title-block__image-col {
        flex: none;
        min-height: 280px;
        width: 100%
    }

    .about-us .title-block__heading {
        font-size: 42px
    }

    .about-us .title-block__heading span:nth-child(2) {
        font-size: 30px
    }

    .about-us .title-block__heading span:nth-child(3) {
        font-size: 22px
    }

    .about-us .story__row {
        flex-direction: column;
        gap: 24px
    }

    .about-us .story__left {
        flex: none
    }

    .about-us .story__image-wrap {
        flex: none;
        width: 100%
    }

    .about-us .story__image-wrap img {
        width: 100%;
        height: 260px
    }

    .about-us .story__metrics {
        flex-direction: column;
        gap: 16px
    }

    .about-us .team__grid {
        grid-template-columns: 1fr
    }

    .about-us .team__card--center {
        grid-column: span 1
    }

    .about-us .approach__row {
        flex-direction: column;
        gap: 24px
    }

    .about-us .approach__right {
        flex: none;
        width: 100%
    }

    .about-us .approach__image-wrap img {
        width: 100%;
        height: 220px
    }

    .about-us .approach__dashed {
        padding: 24px 16px
    }
}

@media (max-width: 480px) {
    .about-us .title-block {
        padding: 40px 0
    }

    .about-us .title-block__heading {
        font-size: 30px
    }

    .about-us .title-block__heading span:nth-child(2) {
        font-size: 22px
    }

    .about-us .title-block__heading span:nth-child(3) {
        font-size: 15px
    }

    .about-us .story {
        padding: 40px 0
    }

    .about-us .team {
        padding: 40px 0
    }

    .about-us .approach {
        padding: 40px 0
    }

    .about-us .story__metrics {
        gap: 16px
    }

    .about-us .approach__dashed-label {
        font-size: 15px;
        left: 16px
    }
}

.podcast {
    background: #fff;
    overflow-x: clip;
    position: relative
}

.podcast * {
    box-sizing: border-box
}

.podcast__strip {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    position: relative
}

.podcast__strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 100%, #d01a5217 0%, transparent 65%);
    pointer-events: none;
    z-index: 0
}

.podcast__strip-text {
    flex: 1 1 0;
    position: relative;
    z-index: 1
}

.podcast__mark {
    font-size: 72px;
    line-height: 1.2;
    color: #d01a5217;
    position: absolute;
    top: -16px;
    left: -8px;
    font-style: normal;
    pointer-events: none;
    user-select: none;
    letter-spacing: -4px
}

.podcast__num {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -1.5px;
    color: #D01A52;
    font-weight: 800;
    display: block;
    margin-bottom: 8px
}

.podcast__strip-heading {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -.5px;
    font-weight: 700;
    color: #1b1220;
    margin: 0 0 16px;
    padding-left: 0;
    position: relative
}

.podcast__strip-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #3a2d35;
    margin: 0;
    text-align: justify
}

.podcast__strip-image {
    flex: 0 0 340px;
    max-width: 340px;
    position: relative;
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 2px 9px 40px 0 #d01a5224
}

.podcast__strip-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    filter: saturate(0.82) brightness(0.97) hue-rotate(0deg) contrast(1.04)
}

.podcast__strip-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #d01a521a 0%, transparent 60%);
    pointer-events: none
}

.podcast__divider {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px
}

.podcast__divider-line {
    width: 80px;
    height: 2px;
    background: #D01A52;
    border-radius: 4px;
    opacity: .35
}

.podcast__list-area {
    background: #ECE9EB;
    position: relative;
    padding: 80px 0
}

.podcast__list-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 100%, #d01a520f 0%, transparent 55%), radial-gradient(circle at 100% 0%, #fbd50c12 0%, transparent 50%);
    pointer-events: none
}

.podcast__list-area::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 80px 0 #d01a5212;
    pointer-events: none
}

.podcast__list-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1
}

.podcast__list-label {
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D01A52;
    font-weight: 600;
    margin-bottom: 8px;
    display: block
}

.podcast__list-heading {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -.5px;
    font-weight: 700;
    color: #1b1220;
    margin: 0 0 40px
}

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

.podcast__card {
    background: #fff;
    border-radius: 4px;
    padding: 24px;
    position: relative;
    box-shadow: 2px 5px 20px 0 #d01a5214;
    transition: box-shadow .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .45s ease-in-out;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.podcast__card::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: -6px;
    bottom: -6px;
    border: 2px solid #d01a522e;
    border-radius: 4px;
    pointer-events: none;
    transition: opacity .5s ease-in-out;
    z-index: 0
}

.podcast__card:hover {
    box-shadow: 2px 9px 40px 0 #d01a5224;
    transform: translateY(-2px)
}

.podcast__card:hover::before {
    opacity: 0
}

.podcast__card-top {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    z-index: 1
}

.podcast__card-index {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #d01a5221;
    letter-spacing: -2px;
    line-height: 1;
    flex-shrink: 0
}

.podcast__card-tag {
    font-size: 15px;
    line-height: 1.2;
    background: #fbd50c38;
    color: #7a5a00;
    padding: 4px 16px;
    border-radius: 36px;
    font-weight: 600;
    white-space: nowrap
}

.podcast__card-heading {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: #1b1220;
    margin: 0;
    letter-spacing: -.3px;
    position: relative;
    z-index: 1
}

.podcast__card-body {
    font-size: 15px;
    line-height: 1.7;
    color: #3a2d35;
    margin: 0;
    text-align: justify;
    position: relative;
    z-index: 1
}

.podcast__card-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1
}

.podcast__card-duration {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.2;
    color: #D01A52;
    font-weight: 600
}

.podcast__card-duration svg {
    flex-shrink: 0
}

.podcast__card-read {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.2;
    color: #1b1220;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: color .5s ease-in-out, border-color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-left: auto
}

.podcast__card-read:hover {
    color: #D01A52;
    border-color: #D01A52
}

.podcast__card-read svg {
    transition: transform .45s ease-in-out
}

.podcast__card-read:hover svg {
    transform: translateX(4px)
}

.podcast__card--accent {
    background: #D01A52;
    animation: podcast-accent-pulse 3.5s ease-in-out infinite
}

.podcast__card--accent::before {
    border-color: #fbd50c59
}

.podcast__card--accent .podcast__card-index {
    color: #ffffff2e
}

.podcast__card--accent .podcast__card-heading {
    color: #fff
}

.podcast__card--accent .podcast__card-body {
    color: #ffffffe0
}

.podcast__card--accent .podcast__card-tag {
    background: #fbd50c47;
    color: #fff
}

.podcast__card--accent .podcast__card-duration {
    color: #FBD50C
}

.podcast__card--accent .podcast__card-read {
    color: #fff
}

.podcast__card--accent:hover {
    box-shadow: 2px 9px 40px 0 #d01a5238
}

.podcast__card--accent .podcast__card-read:hover {
    color: #FBD50C;
    border-color: #FBD50C
}

@keyframes podcast-accent-pulse {

    0%,
    100% {
        box-shadow: 2px 5px 20px 0 #d01a5214
    }

    50% {
        box-shadow: 2px 9px 40px 0 #d01a5238 0 0 0 6px #d01a5212
    }
}

.podcast__curve-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    overflow: hidden;
    height: 60px;
    z-index: 2
}

.podcast__curve-decor svg {
    display: block;
    width: 100%
}

@keyframes podcast-slide-in {
    from {
        opacity: 0;
        transform: translateX(-32px)
    }

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

.podcast__strip-text {
    animation: podcast-slide-in .6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
}

.podcast__strip-image {
    animation: podcast-slide-in .55s cubic-bezier(0.25, 0.46, 0.45, 0.94) .12s both
}

.podcast__card {
    animation: podcast-slide-in .55s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
}

.podcast__card:nth-child(1) {
    animation-delay: .08s
}

.podcast__card:nth-child(2) {
    animation-delay: .18s
}

.podcast__card:nth-child(3) {
    animation-delay: .28s
}

.podcast__card:nth-child(4) {
    animation-delay: .38s
}

.podcast__card:nth-child(5) {
    animation-delay: .46s
}

.podcast__card:nth-child(6) {
    animation-delay: .54s
}

@media (max-width: 1024px) {
    .podcast__strip {
        flex-direction: column;
        gap: 24px;
        padding: 40px 24px 32px
    }

    .podcast__strip-image {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%
    }

    .podcast__strip-image img {
        height: 220px
    }

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

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

    .podcast__list-area {
        padding: 40px 0
    }

    .podcast__strip {
        padding: 24px 16px
    }

    .podcast__list-inner {
        padding: 0 16px
    }

    .podcast__divider {
        padding: 0 16px
    }
}

@media (max-width: 480px) {
    .podcast__strip-heading {
        font-size: 22px
    }

    .podcast__num {
        font-size: 30px
    }

    .podcast__card-heading {
        font-size: 22px
    }

    .podcast__card {
        padding: 16px
    }
}

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

.success-page .success-page__card {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px
}

.success-page .success-page__icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 36px;
    background: #ECE9EB;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 5px 20px 0 #d01a5214;
    flex-shrink: 0
}

.success-page .success-page__icon-wrap svg {
    display: block
}

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

.success-page .success-page__label {
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: .08em;
    color: #D01A52;
    font-weight: 600;
    text-transform: uppercase
}

.success-page .success-page__heading {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1b1b1b;
    font-weight: 700;
    margin: 0
}

.success-page .success-page__text {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a3a;
    margin: 0;
    text-align: center
}

.success-page .success-page__divider {
    width: 48px;
    height: 3px;
    border-radius: 4px;
    background: #FBD50C
}

.success-page .success-page__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center
}

.success-page .success-page__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
    color: #D01A52;
    text-decoration: none;
    border-radius: 4px;
    padding: 16px 24px;
    background: #ECE9EB;
    box-shadow: 2px 2px 4px 0 #d01a5212;
    transition: background .5s ease-in-out, box-shadow .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .45s ease-in-out;
    letter-spacing: .01em
}

.success-page .success-page__link:hover {
    background: #e2dde0;
    box-shadow: 2px 5px 20px 0 #d01a5214
}

.success-page .success-page__link:active {
    transform: scale(0.97)
}

.success-page .success-page__link:focus-visible {
    outline: 2px solid #D01A52;
    outline-offset: 3px
}

.success-page .success-page__link--primary {
    background: #D01A52;
    color: #fff;
    box-shadow: 2px 5px 20px 0 #d01a5224
}

.success-page .success-page__link--primary:hover {
    background: #b81647;
    box-shadow: 2px 9px 40px 0 #d01a5224
}

.success-page .success-page__link svg {
    flex-shrink: 0;
    transition: transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.success-page .success-page__link:hover svg {
    transform: translateX(3px)
}

@media (max-width: 480px) {
    .success-page {
        padding: 80px 16px
    }

    .success-page .success-page__heading {
        font-size: 30px
    }

    .success-page .success-page__actions {
        flex-direction: column;
        gap: 16px;
        width: 100%
    }

    .success-page .success-page__link {
        width: 100%;
        justify-content: center
    }
}