@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;600&family=League+Spartan:wght@100..900&display=swap');

html {
    overflow-x: clip;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

#region,
#firmy,
#ekosystem,
#pulsio,
#projekty,
#kontakt {
    scroll-margin-top: calc(var(--header-h, 130px) + 32px);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: "League Spartan", sans-serif;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

* {
    box-sizing: border-box;
    outline: none;
}

label.error {
    display: none !important;
}

.error {
    border-color: red !important;
}

.valid {
    border-color: green !important;
}

button,
a {
    cursor: pointer;
    transition: .3s;
}

ul,
ol {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

p {
    margin-top: 0;
}

.container {
    width: 100%;
    max-width: 1784px;
    padding: 0 72px;
    margin: 0 auto;
}

header {
    z-index: 1000;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 50px 0;
    transition: transform 0.3s ease, background-color 0.3s ease, padding 0.3s ease;
    transition: .3s;
}

header.header-hidden {
    transform: translateY(-100%);
}

header .container {
    max-width: 100%;
}

.header_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    z-index: 1000;
}

a {
    text-decoration: none;
}

.top_nav {
    width: 100%;
    max-width: 1127px;
    display: flex;
    justify-content: space-between;
}

.top_nav a {
    font-size: 24px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    border-bottom: 1px solid transparent;
    transition: .3s;
}

.top_nav a:hover {
    border-bottom-color: white;
}

.lang_switch {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: 24px;
}

.lang_switch a {
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.6;
    transition: opacity .3s;
}

.lang_switch a:hover {
    opacity: 1;
}

.lang_switch .is-current a {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.open_nav {
    display: none;
    background: transparent;
    border: 0;
    padding: 0;
    width: 32px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 1000;
}

.open_nav span {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #fff;
    transition: .3s;
}

.open_nav span:nth-child(1) {
    top: 0;
}

.open_nav span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.open_nav span:nth-child(3) {
    bottom: 0;
}

body.menu_opened .open_nav span:nth-child(1) {
    top: 50%;
    transform: rotate(45deg);
}

body.menu_opened .open_nav span:nth-child(2) {
    opacity: 0;
}

body.menu_opened .open_nav span:nth-child(3) {
    bottom: 50%;
    transform: rotate(-45deg);
}

body.menu_opened {
    overflow: hidden;
}

.section {
    position: relative;
    margin: 150px 0;
}

.intro_section {
    margin: 0 !important;
    padding: 0 !important;
    min-height: calc(100dvh / var(--zoom, 1));
    display: flex;
    align-items: center;
    padding: 185px 0;
}

.intro_cover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #3e2785;
}

.intro_cover video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.intro_section .container {
    position: relative;
    z-index: 100;
}

.intro_marquee {
    position: absolute;
    bottom: 0;
    z-index: 100;
    left: 0;
    width: 100%;
    overflow: hidden;
    padding: 23px 0;
}

.intro_marquee_track {
    display: flex;
    width: max-content;
    gap: 60px;
    padding-left: 60px;
    animation: introMarqueeScroll 30s linear infinite;
}

.intro_marquee_track p {
    font-size: clamp(32px, calc(3.65 * var(--vw, 1vw)), 70px);
    color: #fff;
    font-weight: bold;
    line-height: 1;
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

@keyframes introMarqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.intro_section h1 {
    color: #fff;
    margin: 0;
    margin-bottom: 32px;
    font-size: clamp(40px, calc(7.3 * var(--vw, 1vw)), 140px);
    text-transform: uppercase;
    line-height: .9;
}

.intro_buttons {
    display: flex;
    gap: 20px;
}

.btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: .3s;
    padding: 20px 30px;
    border-radius: 100px;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    line-height: 1;
}

.btn.primary {
    background-color: #C96593;
}

.btn.secondary {
    background-color: #462051;
}

.btn:hover {
    opacity: .7;
}

.numbers_flex {
    display: flex;
    justify-content: space-between;
}

.number_item {
    display: flex;
    align-items: center;
    gap: 26px;
}

.number_item_text {
    flex: 1;
}

.number_item_text p {
    margin: 0;
    font-size: clamp(48px, calc(4.2 * var(--vw, 1vw)), 80px);
    color: #C96593;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 5px;
}

.number_item_text span {
    display: block;
    font-size: 20px;
    color: #462051;
    line-height: 1.3;
}

.header-scrolled {
    background-color: #462051;
    backdrop-filter: blur(5px);
    padding: 30px 0;
}

.video_wrp {
    position: relative;
    display: flex;
    border-radius: 15px;
    overflow: hidden;
    max-width: 1238px;
    margin: 0 auto;
    aspect-ratio: 16/9;
}

.video_wrp::before {
    content: '';
    background-image: url(../img/play.svg);
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-position: center;
    transition: .3s;
    background-size: 90px;
}

.video_wrp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video_wrp:hover::before {
    background-size: 80px;
}

.heart_europe_section {
    position: relative;
}

.heart_europe_section::before {
    content: '';
    background-image: url(../img/map_bg.svg);
    height: 1519px;
    display: block;
    position: absolute;
    left: 0;
    bottom: -540px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: bottom center;
    pointer-events: none;
}

.heart_flex {
    display: flex;
}

.heart_left {
    width: 50%;
}

.heart_right {
    width: 50%;
    padding-top: 440px;
}

.heart_flex h2 {
    margin: 0;
    font-size: clamp(60px, calc(10.4 * var(--vw, 1vw)), 200px);
    color: #C96593;
    text-transform: uppercase;
    line-height: 1;
}

.heart_flex h2 span {
    color: #462051;
}

.heart_left p {
    margin: 0;
    margin-top: 55px;
    font-size: 30px;
    color: #462051;
    line-height: 1.5;
    max-width: 627px;
}

.heart_content {
    text-align: center;
}

.heart_map {
    margin-top: 80px;
    text-align: center;
    display: flex;
}

.heart_europe_section .container {
    position: relative;
    z-index: 10;
}

.companies_section h2,
.projects_section h2 {
    margin: 0 0 22px;
    color: #462051;
    font-weight: bold;
    font-size: clamp(36px, calc(4.2 * var(--vw, 1vw)), 80px);
    line-height: 1.1;
    text-transform: uppercase;
}

.companies_section .after_h2,
.projects_section .after_h2 {
    max-width: 1004px;
    margin: 0 0 60px;
    font-size: clamp(16px, calc(1.6 * var(--vw, 1vw)), 30px);
    color: #462051;
    line-height: 1.4;
}

.companies_filters {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.filter_group {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex-wrap: wrap;
    flex-direction: column;
}

.filter_label {
    font-size: 20px;
    font-weight: 700;
    color: #462051;
    line-height: 2;
    margin: 0;
    min-width: 80px;
}

.filter_pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter_pill {
    border: none;
    background: #e9d9e1;
    color: #462051;
    padding: 12px 20px;
    border-radius: 80px;
    cursor: pointer;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: normal;
    font-size: 16px;
}

.filter_pill::before {
    content: "+";
}

.filter_pill:hover {
    opacity: .8;
}

.filter_pill.active {
    background: #c96593;
    color: #fff;
}

.companies_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
    margin-top: 60px;
}

.company_card {
    flex: 1 1 calc((100% - 68px) / 3);
    max-width: calc((100% - 68px) / 3);
    min-width: 280px;
    border: 1px solid #462051;
    border-radius: 15px;
    padding: 35px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 309px;
    background: transparent;
    cursor: pointer;
    transition: .3s;
}

.company_card:hover {
    border-color: #c96593;
    transform: scale(1.02);
}

.company_card:hover .company_card_link span {
    transform: translateX(4px);
}

.company_card.is-hidden {
    display: none;
}

.company_card_logo {
    height: 92px;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.company_card_logo img {
    max-height: 100%;
    max-width: 176px;
}

.company_card h3 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    color: #462051;
    line-height: 1.1;
}

.company_card p {
    margin: 0;
    font-size: 20px;
    color: #462051;
    line-height: 1.3;
}

.company_card_link {
    margin-top: auto;
    font-size: 16px;
    color: #C96593;
    display: inline-flex;
    gap: 8px;
    transition: .3s;
}

.company_card_link span {
    display: inline-flex;
    transition: transform .3s;
    align-items: center;
    line-height: 1;
    padding-top: 3px;
}

.companies_load_more_wrap {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.btn.outline {
    background: transparent;
    color: #462051;
    border: 1px solid #462051;
}

.btn.outline:hover {
    background: #462051;
    color: #fff;
    opacity: 1;
}

.companies_load_more.is-hidden {
    display: none;
}

.company_modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}

.company_modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal_backdrop {
    position: absolute;
    inset: 0;
    background: rgba(141, 141, 141, .8);
    cursor: pointer;
}

.modal_panel {
    position: relative;
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 1008px;
    max-height: calc(100dvh - 64px);
    overflow-y: auto;
    padding: 60px 70px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transform: translateY(20px);
    transition: transform .25s ease;
    box-shadow: 0 30px 80px rgba(70, 32, 81, .25);
}

.company_modal.is-open .modal_panel {
    transform: translateY(0);
}

.modal_close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: #462051;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
    transition: .3s;
    background-color: #fff;
    padding: 10px;
}

.modal_close img {
    max-width: 100%;
    max-height: 100%;
}

.modal_close:hover {
    opacity: .6;
}

.modal_banner {
    overflow: hidden;
    border-radius: 20px;
    flex: none;
    margin-bottom: 20px;
}

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

.modal_banner[hidden] {
    display: none;
}

.modal_logo {
    display: flex;
    align-items: center;
    height: 110px;
}

.modal_logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: left center;
}

.modal_logo:empty,
.modal_logo img:not([src]),
.modal_logo img[src=""] {
    display: none;
}

.modal_labels {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.modal_labels:empty {
    display: none;
}

.modal_label {
    background: #e9d9e1;
    color: #462051;
    padding: 8px 18px 7px;
    border-radius: 80px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: capitalize;
}

.modal_title {
    color: #462051;
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
}

.modal_body {
    color: #462051;
    font-size: 18px;
    line-height: 1.55;
}

.modal_body>*:first-child {
    margin-top: 0;
}

.modal_body>*:last-child {
    margin-bottom: 0;
}

.modal_body p {
    margin: 0 0 12px;
}

.modal_body a {
    color: #c96593;
    text-decoration: underline;
}

.modal_cta {
    align-self: flex-start;
}

.modal_cta[hidden] {
    display: none;
}

body.modal_open {
    overflow: hidden;
}

.ecosystem_title {
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ecosystem_title span {
    position: absolute;
    font-size: clamp(80px, calc(19.1 * var(--vw, 1vw)), 367px);
    color: #F5F5F5;
    text-transform: uppercase;
    font-weight: bold;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    line-height: 1;
    padding-top: 5%;
}

.ecosystem_title h2 {
    margin: 0;
    position: relative;
    z-index: 100;
    font-size: clamp(28px, calc(3.1 * var(--vw, 1vw)), 60px);
    color: #462051;
    text-align: center;
    font-weight: normal;
    max-width: 1200px;
    width: 100%;
    line-height: 1.2;
}

.ecosystem_info {
    position: relative;
    padding-left: 95px;
    padding-top: 100px;
    gap: 90px;
    padding-right: 120px;
    display: flex;
}

.ecosystem_video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #3e2785;
}

.ecosystem_video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background-color: #462051;
}

.ecosystem_areas {
    flex: 1;
    position: relative;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 50px;
    max-width: 962px;
    margin: 0 auto;
}

.ecosystem_areas div {
    border: 1px solid #fff;
    border-radius: 50%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    font-size: clamp(18px, calc(1.6 * var(--vw, 1vw)), 30px);
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
}

.ecosystem_areas div:nth-child(1) {
    animation: liquid2 9s ease-in-out infinite;
}

.ecosystem_areas div:nth-child(2) {
    animation: liquid4 8s ease-in-out infinite;
}

.ecosystem_areas div:nth-child(3) {
    animation: liquid1 10s ease-in-out infinite;
}

.ecosystem_areas div:nth-child(4) {
    animation: liquid3 11s ease-in-out infinite;
}

@keyframes liquid1 {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@keyframes liquid2 {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
    }

    50% {
        border-radius: 70% 30% 40% 60% / 60% 40% 60% 30%;
    }

    100% {
        border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
    }
}

@keyframes liquid3 {
    0% {
        border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
    }

    50% {
        border-radius: 35% 65% 55% 45% / 45% 55% 65% 35%;
    }

    100% {
        border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
    }
}

@keyframes liquid4 {
    0% {
        border-radius: 55% 45% 35% 65% / 65% 35% 55% 45%;
    }

    50% {
        border-radius: 40% 60% 65% 35% / 35% 65% 40% 60%;
    }

    100% {
        border-radius: 55% 45% 35% 65% / 65% 35% 55% 45%;
    }
}

.pulsio_card {
    background: #462051;
    border-radius: 30px;
    padding: 80px;
    display: flex;
    gap: 70px;
}

.pulsio_left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #fff;
}

.pulsio_title {
    margin: 0;
    font-size: clamp(56px, calc(9.4 * var(--vw, 1vw)), 180px);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    color: #C96593;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.pulsio_title span {
    font-size: clamp(32px, calc(5.2 * var(--vw, 1vw)), 100px);
    font-weight: 700;
    color: #F4D9E4;
    line-height: 1;
    margin-top: 10px;
}

.pulsio_subtitle {
    margin: 4px 0 0;
    font-size: clamp(20px, calc(1.7 * var(--vw, 1vw)), 32px);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    color: #fff;
}

.pulsio_text {
    margin: auto 0 22px;
    max-width: 600px;
    font-size: 20px;
    line-height: 1.3;
    color: #fff;
}

.pulsio_right {
    position: relative;
    flex: none;
    width: 576px;
    border-radius: 20px;
    overflow: hidden;
}

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

.pulsio_caption {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    color: #fff;
    font-family: "Caveat", cursive;
    line-height: 1;
    pointer-events: none;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .25);
}

.pulsio_caption span:first-child {
    font-size: 64px;
    font-weight: 600;
}

.pulsio_caption span:last-child {
    font-size: 56px;
    font-weight: 400;
    position: relative;
}

.pulsio_caption span:last-child::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border: 1.5px solid #fff;
    border-radius: 50%;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
}

.projects_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
}

.footer {
    background: #462051;
    color: #fff;
    padding: 100px 0 0;
    margin-top: 150px;
}

.footer_top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 80px;
    align-items: center;
}

.footer_person {
    display: flex;
    align-items: center;
    gap: 60px;
    flex: 1;
    max-width: 900px;
}

.footer_person_img {
    width: 348px;
    height: 415px;
    object-fit: cover;
    border-radius: 20px;
    flex: none;
}

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

.footer_person_info p {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.footer_person_heading {
    display: flex;
    flex-direction: column;
}

.footer_person_name,
.footer_person_role {
    text-transform: uppercase;
    line-height: 1.2;
}

.footer_person_contact a {
    color: #fff;
}

.footer_person_contact a:hover {
    color: #C96593;
}

.footer_person_linkedin {
    display: inline-flex;
    align-self: flex-start;
    transition: .3s;
}

.footer_person_linkedin:hover {
    opacity: .8;
}

.footer_org {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    max-width: 460px;
}

.footer_ick {
    height: auto;
    max-width: 220px;
}

.footer_address {
    font-style: normal;
    font-size: 20px;
    line-height: 1.5;
}

.footer_extra {
    margin-top: 16px;
    max-width: 360px;
    height: auto;
}

.footer_label {
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.footer_label img {
    width: 100%;
    display: block;
}

.single header,
.page:not(.home) header,
.error404 header,
body.archive header,
body.search header {
    background-color: #462051;
    padding: 30px 0;
}

.inner_page_section {
    margin: 0;
    padding: 220px 0 0;
}

.content {
    max-width: 1080px;
    color: #462051;
    font-size: 20px;
    line-height: 1.6;
}

.content>*:first-child {
    margin-top: 0;
}

.content>*:last-child {
    margin-bottom: 0;
}

.content h1 {
    margin: 0 0 24px;
    font-size: clamp(36px, calc(4.2 * var(--vw, 1vw)), 80px);
    color: #462051;
    text-transform: uppercase;
    line-height: 1.1;
    font-weight: 700;
}

.content h2 {
    margin: 1.6em 0 .6em;
    font-size: clamp(28px, calc(2.8 * var(--vw, 1vw)), 54px);
    color: #462051;
    line-height: 1.15;
    font-weight: 700;
    text-transform: uppercase;
}

.content h3 {
    margin: 1.4em 0 .5em;
    font-size: clamp(24px, calc(2.1 * var(--vw, 1vw)), 40px);
    color: #462051;
    line-height: 1.2;
    font-weight: 700;
}

.content h4 {
    margin: 1.3em 0 .5em;
    font-size: clamp(20px, calc(1.6 * var(--vw, 1vw)), 30px);
    color: #462051;
    line-height: 1.25;
    font-weight: 700;
}

.content h5 {
    margin: 1.2em 0 .4em;
    font-size: 22px;
    color: #462051;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
}

.content h6 {
    margin: 1.2em 0 .4em;
    font-size: 18px;
    color: #c96593;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.content p {
    margin: 0 0 1.1em;
}

.content a {
    color: #c96593;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.content a:hover {
    color: #462051;
}

.content strong {
    font-weight: 700;
}

.content em {
    font-style: italic;
}

.content ul,
.content ol {
    margin: 0 0 1.1em;
    padding-left: 1.6em;
    list-style: revert;
}

.content ul {
    list-style-type: disc;
}

.content ol {
    list-style-type: decimal;
}

.content li {
    margin-bottom: .4em;
    line-height: 1.6;
}

.content li>ul,
.content li>ol {
    margin: .4em 0 .4em;
}

.content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 1.4em 0;
    display: block;
}

.content figure {
    margin: 1.4em 0;
}

.content figure img {
    margin: 0;
}

.content figcaption {
    margin-top: 12px;
    font-size: 16px;
    color: #8a6f93;
    line-height: 1.4;
    text-align: center;
}

.content blockquote {
    margin: 1.4em 0;
    padding: 20px 28px;
    border-left: 4px solid #c96593;
    background: #f7eef3;
    border-radius: 0 15px 15px 0;
    color: #462051;
    font-style: italic;
    font-size: 22px;
    line-height: 1.5;
}

.content blockquote p:last-child {
    margin-bottom: 0;
}

.content hr {
    border: 0;
    border-top: 1px solid #e9d9e1;
    margin: 2em 0;
}

.content code {
    background: #f4ecf1;
    color: #462051;
    padding: 2px 8px;
    border-radius: 6px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: .9em;
}

.content pre {
    margin: 1.4em 0;
    padding: 22px 24px;
    background: #462051;
    color: #fff;
    border-radius: 15px;
    overflow-x: auto;
    font-size: 15px;
    line-height: 1.55;
}

.content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
    font-size: inherit;
}

.content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.4em 0;
    font-size: 18px;
    line-height: 1.4;
    border-radius: 15px;
    overflow: hidden;
}

.content table th,
.content table td {
    padding: 14px 18px;
    border: 1px solid #e9d9e1;
    text-align: left;
    vertical-align: top;
}

.content table th {
    background: #462051;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: .02em;
    border-color: #462051;
}

.content table tbody tr:nth-child(even) {
    background: #faf3f7;
}

.content_date {
    display: block;
    margin: -8px 0 28px;
    font-size: 18px;
    color: #c96593;
    font-weight: 600;
    letter-spacing: .02em;
}

[data-animate] {
    opacity: 0;
    transition: opacity .6s ease-out, transform .6s ease-out;
    will-change: opacity, transform;
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="scale"] {
    transform: scale(.95);
}

[data-animate].visible {
    opacity: 1;
    transform: none;
}

.heart_map img {
    max-width: 180px;
    height: auto;
}

.error_404_section {
    padding: 220px 0 140px;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background-color: #3e2785;
    margin: 0 !important;
}

.error_404_inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.error_404_code {
    font-size: clamp(140px, calc(16 * var(--vw, 1vw)), 300px);
    color: #fff;
    line-height: 0.9;
    font-weight: 700;
    margin: 0 0 24px;
    letter-spacing: -0.04em;
}

.error_404_section h1 {
    font-family: "League Spartan", sans-serif;
    font-size: clamp(40px, calc(5 * var(--vw, 1vw)), 90px);
    color: #fff;
    margin: 0 0 32px;
    line-height: 1.1;
    font-weight: 700;
}

.error_404_desc {
    font-size: clamp(16px, calc(1.6 * var(--vw, 1vw)), 24px);
    color: #fff;
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.5;
}