@charset "UTF-8";

/*
Theme Name: SUCCEED
Theme URI: /wp-content/themes/succeed
Author URI:
Version: 1.0
*/

:root {
    --bg: #000;
    --text: #f5f5f5;
    --muted: #cfcfcf;
    --line: #707070;
    --panel: #d9d9d9;
    --green: #11ff00;
    --page-width: 1016px;
    --content-width: 815px;
    --narrow-width: 520px;
    --after-aspect: 3920 / 3366;
    --zoom-progress: 0;
    --start-scale: 1;
    --stage-width: min(100vw, calc(70vh * var(--after-aspect)));
    --stage-shift-y: 0px;
    --zoom-origin-x: 50%;
    --zoom-origin-y: 43%;
    --screen-image-left: 8.1%;
    --screen-image-top: 10.2%;
    --screen-image-width: 83.9%;
    --screen-image-height: 70.1%;
}

html,
body {
    background: var(--bg);
}

.screen-site {
    background: var(--bg) url(./assets/img/fv_bg.webp) center / cover no-repeat;
}

img{
    display: block;
    width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    height: 100vh;
    overflow: hidden;
    color: var(--text);
    font-family: "Shippori Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.8;
}

a {
    color: inherit;
    text-decoration: none;
}

.intro-experience {
    position: fixed;
    inset: 0;
    z-index: 10;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #000;
    --zoom-delta: calc(1 - var(--start-scale));
}

.intro-stage {
    position: absolute;
    left: 50%;
    top: 50%;
    width: var(--stage-width);
    aspect-ratio: var(--after-aspect);
    overflow: hidden;
    transform-origin: var(--zoom-origin-x) var(--zoom-origin-y);
    transform: translate(-50%, calc(-50% + (var(--stage-shift-y) * var(--zoom-progress)))) scale(calc(var(--start-scale) + (var(--zoom-delta) * var(--zoom-progress))));
    will-change: transform;
}

.intro-video,
.intro-after,
.tv-after-layer,
.tv-frame-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.intro-after {
    z-index: 1;
    object-fit: contain;
    object-position: center center;
    opacity: 1;
    pointer-events: none;
    user-select: none;
}

.intro-after--sp {
    display: none;
}

.intro-video {
    z-index: 3;
    object-fit: contain;
    object-position: center center;
    background: #000;
    transition: none;
}

.tv-after-layer {
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.intro-experience.is-site-active .tv-after-layer {
    opacity: 1;
}

.tv-frame-image {
    z-index: 4;
    object-fit: contain;
    object-position: center center;
    pointer-events: none;
    user-select: none;
}

.tv-frame-image--sp {
    display: none;
}

.tv-screen-clip {
    position: absolute;
    left: var(--screen-image-left);
    top: var(--screen-image-top);
    z-index: 1;
    width: var(--screen-image-width);
    height: var(--screen-image-height);
    overflow: hidden;
    border-radius: 3.5% / 4.5%;
    background: #000;
    container-type: size;
}

.intro-experience.is-after .intro-video {
    opacity: 0;
    pointer-events: none;
}

.intro-scroll-hint {
    position: absolute;
    left: 50%;
    bottom: clamp(32px, 12vh, 120px);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: clamp(5px, 1.4vw, 7px);
    color: var(--green);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(12px, 2vw, 16px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition: opacity 360ms ease, visibility 360ms ease, transform 360ms ease;
}

.intro-experience.is-after:not(.is-scroll-started) .intro-scroll-hint {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.intro-scroll-hint__dot {
    position: relative;
    width: 0.62em;
    height: 0.62em;
    flex: 0 0 auto;
    border-radius: 50%;
    background: currentColor;
}

.intro-scroll-hint__dot::before,
.intro-scroll-hint__dot::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid currentColor;
    border-radius: inherit;
    opacity: 0;
    animation: introScrollRipple 2s ease-out infinite;
}

.intro-scroll-hint__dot::after {
    animation-delay: 1s;
}

@keyframes introScrollRipple {
    0% {
        opacity: 0.75;
        transform: scale(1);
    }

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

.screen-site {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: none;
    scrollbar-width: none;
    container-type: size;
    opacity: 1;
}

.screen-site:focus,
.screen-site:focus-visible {
    outline: none;
}

.screen-site::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.intro-experience.is-site-active .screen-site {
    pointer-events: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

.screen-site .page {
    width: 100%;
    max-width: none;
    min-height: 100vh;
}

.screen-site .hero {
    min-height: 100cqh;
}

.screen-site .hero__lead {
    top: 10.7cqh;
    left: 4.8cqw;
    font-size: max(20px, 3.45cqw);
    line-height: 1.5;
}

.screen-site .hero__bar {
    top: 11cqh;
    right: 4.9cqw;
    width: max(38px, 5.9cqw);
}

.screen-site .hero__instagram {
    top: auto;
    right: 5cqw;
    bottom: 6.8cqh;
    font-size: max(15px, 1.6cqw);
    gap: max(14px, 1.5cqw);
}

.screen-site .hero__instagram span {
    width: max(10px, 2.5cqw);
    height: max(10px, 2.5cqw);
}

.screen-site .hero__meta {
    top: auto;
    left: 4.7cqw;
    bottom: 6.2cqh;
    width: max(150px, 15cqw);
    line-height: 1.6;
}

.screen-site .logo-sprite--hero {
    top: 24cqh;
    width: max(150px, 29.5cqw);
}

.screen-site .wide-placeholder {
    width: 100%;
    margin: 0;
}

.screen-site .access-map {
    width: calc(100% + 30px);
    margin: 18px -15px 0;
}

.event-card__image{
    position: relative;
}

.screen-site .event-card.guest .event-card__image::before {
    content: "Guest event";
}

.screen-site .event-card.house .event-card__image::before {
    content: "House event";
}

.page {
    width: 100%;
    max-width: var(--page-width);
    min-height: 100vh;
    margin: 0 auto;
    background: transparent;
}

.hero {
    position: relative;
    min-height: 760px;
}

.hero__lead {
    position: absolute;
    top: 82px;
    left: 100px;
    color: var(--text);
    font-size: 29px;
    line-height: 1.55;
    letter-spacing: 0;
}

.hero__bar {
    position: absolute;
    top: 78px;
    right: 104px;
    width: 52px;
    line-height: 1;
}

.hero__instagram {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    position: absolute;
    top: 592px;
    right: 103px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--green);
    font-size: 14px;
    line-height: 1;
}

.hero__instagram span,
.button--contact span {
    display: inline-block;
    width: 18px;
    height: 18px;
}

.hero__meta {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    position: absolute;
    top: 562px;
    left: 99px;
    color: var(--text);
    font-size: 10px;
    line-height: 1.45;
    letter-spacing: 0;
}

.logo-sprite--hero {
    position: absolute;
    top: 156px;
    left: 50%;
    width: 268px;
    height: auto;
    transform: translateX(-50%);
    background-position: -349px -149px;
}

.logo-sprite--footer {
    width: 145px;
    height: auto;
    margin: 78px auto 34px;
}

.section {
    width: min(var(--content-width), calc(100% - 0));
    margin: 0 auto;
    text-align: center;
    padding: 0 15px;
    max-width: 820px;
}

.section__label {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    color: var(--green);
    font-size: 16px;
    line-height: 1;
}

.section__label--left {
    text-align: left;
}

.section__title {
    margin-top: 40px;
    color: var(--text);
    font-size: 32px;
    line-height: 1.45;
    letter-spacing: 0;
}

.section__text {
    width: min(var(--narrow-width), 100%);
    margin: 31px auto 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.95;
}

.section__text p + p {
    margin-top: 20px;
}

.section--intro {
    padding-top: 180px;
    padding-bottom: 46px;
}

.wide-placeholder {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    height: 420px;
    background: var(--panel);
}

.wide-slider {
    overflow: hidden;
    background: #000;
}

.wide-slider:not(.slick-initialized) .wide-slider__item:not(:first-child) {
    display: none;
}

.wide-slider .slick-list,
.wide-slider .slick-track,
.wide-slider__item,
.wide-slider__item picture {
    height: 100%;
}

.wide-slider__item picture,
.wide-slider__item img {
    display: block;
    width: 100%;
}

.wide-slider__item img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.wide-slider .slick-dots {
    bottom: 18px;
}

.wide-slider .slick-dots li,
.wide-slider .slick-dots li button {
    width: 10px;
    height: 10px;
}

.wide-slider .slick-dots li button::before {
    width: 10px;
    height: 10px;
    color: var(--green);
    font-size: 10px;
    opacity: 0.35;
}

.wide-slider .slick-dots li.slick-active button::before {
    color: var(--green);
    opacity: 1;
}

.section--instagram {
    padding-top: 127px;
    padding-bottom: 96px;
}

.instagram-grid {
    width: min(590px, 100%);
    margin: 43px auto 50px;
}

.button {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 270px;
    min-height: 50px;
    border-radius: 999px;
    background: var(--green);
    color: #000;
    font-size: 16px;
    line-height: 1;
}

.button {
    transition: transform 0.3s ease;
    transform-origin: center;
}

.button:hover {
    transform: scale(1.05);
}

.divider {
    max-width: 790px;
    margin: 0 auto;
    width: 100%;
    height: 1px;
    background: var(--line);
}

.section--event {
    padding-bottom: 95px;
}

.section--event .divider,
.section--access .divider,
.section--rental .divider,
.footer .divider {
    margin-bottom: 88px;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 19px;
    width: min(795px, 100%);
    margin: 45px auto 43px;
    text-align: left;
}

.event-card__image {
    position: relative;
}

.event-card__category{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    min-width: 93px;
    padding: 2px 9px;
    color: #000;
    font-size: 10px;
    line-height: 1;
    text-align: center;
    background: #fefefe;
}

.event-card__category--guest {
    background: #fff000;
}

.event-card__category--house {
    background: #11FF00;
}

.event-card__category--other {
    background: #fefefe;
}

.event-card p {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    display: block;
    margin-top: 15px;
    color: var(--text);
    font-size: 14px;
    line-height: 1;
}

.event-card h2 {
    margin-top: 10px;
    color: var(--text);
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
}

.section--access {
    padding-bottom: 109px;
    max-width: unset;
}

.access-map {
    width: 100%;
    height: 350px;
    margin: 45px auto 0;
    overflow: hidden;
    --map-ui-scale: 0.82;
}

.access-map iframe{
    display: block;
    width: calc(100% / var(--map-ui-scale));
    height: calc(100% / var(--map-ui-scale));
    border: 0;
    transform: scale(var(--map-ui-scale));
    transform-origin: left top;
}

.access-info{
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.access-info__item{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 33px;
}

.access-info__item__ttl{
    color: #fff;
    font-size: 14px;
}

.access-info__item__link{
    display: flex;
    gap: 5px;
    align-items: center;
    color: #11FF00;
    font-size: 14px;
}

.access-info__item__link--taxi::before{
    content: "";
    background: url(./assets/img/taxi_icon.svg);
    width: 14px;
    height: 14px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.access-info__item__link--book::before{
    content: "";
    background: url(./assets/img/book_icon.svg);
    width: 14px;
    height: 14px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.section--rental {
    padding-bottom: 103px;
}

.section--rental .section__title {
    margin-top: 40px;
}

.section--rental .button {
    margin-top: 42px;
}

.desk-visual {
    width: 100vw;
    height: 418px;
    margin: 0 calc(50% - 50vw);
    overflow: hidden;
    background: #000;
}

.desk-visual picture,
.desk-visual img {
    display: block;
    width: 100%;
    height: 100%;
}

.desk-visual img {
    object-fit: cover;
    object-position: center center;
}

.footer {
    width: min(var(--content-width), calc(100% - 64px));
    padding-bottom: 80px;
    margin: 0 auto;
    text-align: center;
}

.footer__address {
    color: var(--text);
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: 1.85;
}

.button--contact {
    width: 290px;
    margin-top: 34px;
}

.sp490only{
    display: none;
}

.sp768only{
    display: none;
}

@media (max-width: 760px) {
    .section{
        padding: 0 10px;
    }

    .hero {
        min-height: 610px;
    }

    .hero__lead {
        top: 48px;
        left: 28px;
        font-size: 24px;
    }

    .hero__bar {
        top: 48px;
        right: 28px;
        font-size: 18px;
    }

    .hero__instagram {
        top: 465px;
        right: 28px;
    }

    .hero__meta {
        top: 466px;
        left: 28px;
    }

    .logo-sprite--hero {
        top: 132px;
        width: 200px;
        height: auto;
    }

    .section,
    .footer {
        width: min(100% - 40px, var(--content-width));
    }

    .section__title {
        margin-top: 30px;
        font-size: 25px;
    }

    .wide-placeholder {
        height: 280px;
    }

    .desk-visual {
        height: 184px;
    }

    .event-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 18px;
    }

    .access-map {
        height: 260px;
    }

    .screen-site {
        background: var(--bg) url(./assets/img/fv_sp.webp) center / cover no-repeat;
    }

    .sp768only{
        display: block;
    }
}

@media (max-width: 490px) {
    .hero {
        min-height: 560px;
    }

    .hero__lead {
        font-size: 21px;
    }

    .hero__meta {
        top: 492px;
    }

    .hero__instagram {
        top: 492px;
    }

    .section__text {
        font-size: 12px;
    }

    .instagram-grid,
    .event-grid {
        gap: 14px;
    }

    .button,
    .button--contact {
        width: min(270px, 100%);
    }

    .access-info__item__ttl{
        font-size: 12px;
    }
    .sp490only{
        display: block;
    }
}

@media (max-width: 760px) {
    .screen-site .hero {
        min-height: 100cqh;
    }

    .screen-site .hero__lead {
        top: 10cqh;
        left: 6cqw;
        font-size: clamp(12px, 4.4cqw, 18px);
        line-height: 1.5;
    }

    .screen-site .hero__bar {
        top: 10.5cqh;
        right: 6cqw;
        width: clamp(18px, 6cqw, 32px);
    }

    .screen-site .logo-sprite--hero {
        top: 27cqh;
        width: clamp(72px, 31cqw, 160px);
    }

    .screen-site .hero__meta {
        left: 6cqw;
        bottom: 4.8cqh;
        font-size: clamp(8px, 2.35cqw, 10px);
        line-height: 1.35;
    }

    .screen-site .hero__instagram {
        right: 6cqw;
        bottom: 5.4cqh;
        font-size: clamp(8px, 2.25cqw, 10px);
        gap: 10px;
    }

    .screen-site .hero__instagram span {
        width: max(6px, 5cqw);
        height: max(6px, 5cqw);
    }

    .screen-site .section {
        width: min(100% - 10px, var(--content-width));
    }

    .screen-site .section__label {
        font-size: 12px;
    }

    .screen-site .section__title {
        margin-top: 22px;
        font-size: 17px;
        line-height: 1.45;
    }

    .screen-site .section__text {
        margin-top: 30px;
        font-size: 10px;
        line-height: 1.75;
    }

    .screen-site .section__text p + p {
        margin-top: 8px;
    }

    .screen-site .section--intro {
        padding: 0;
        padding-top: 22px;
        padding-bottom: 34px;
    }

    .screen-site .wide-placeholder {
        height: 300px;
    }

    .screen-site .section--instagram {
        padding-top: 42px;
        padding-bottom: 36px;
    }

    .screen-site .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px 8px;
        margin: 35px auto 40px;
    }

    .instagram-grid{
        grid-template-columns:unset;
    }

    .screen-site .button {
        width: min(300px, 100%);
        min-height: 40px;
        font-size: 16px;
    }

    .screen-site .section--event {
        padding-bottom: 36px;
    }

    .screen-site .section--event .divider,
    .screen-site .section--access .divider,
    .screen-site .section--rental .divider,
    .screen-site .footer .divider {
        margin-bottom: 34px;
    }

    .screen-site .event-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 12px;
        margin: 20px auto 40px;
    }

    .screen-site .event-card .event-card__image::before {
        min-width: 34px;
        padding: 2px 3px;
    }

    .screen-site .event-card p {
        margin-top: 8px;
        font-size: 10px;
    }

    .screen-site .event-card h2 {
        margin-top: 8px;
        font-size: 14px;
    }

    .screen-site .section {
        width: min(100% - 28px, var(--content-width));
    }

    .screen-site .section--access {
        max-width: unset;
        width: 100%;
        padding-bottom: 40px;
    }

    .screen-site .access-map {
        width: calc(100% + 20px);
        height: 300px;
        margin-right: -10px;
        margin-left: -10px;
    }

    .screen-site .section--rental {
        padding-bottom: 80px;
    }

    .screen-site .section--rental .section__title {
        margin-top: 35px;
    }

    .screen-site .section--rental .button {
        margin-top: 18px;
    }

    .screen-site .desk-visual {
        height: 184px;
    }

    .screen-site .logo-sprite--footer {
        width: 120px;
        margin: 70px auto 30px;
    }

    .screen-site .footer {
        width: min(100% - 28px, var(--content-width));
        padding-bottom: 42px;
    }

    .screen-site .footer__address {
        font-size: 12px;
        line-height: 1.6;
    }

    .screen-site .button--contact {
        margin-top: 14px;
        font-size: 13px;
    }

    .access-info__item{
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 490px) {
    .screen-site .hero__lead {
        font-size: clamp(12px, 4.2cqw, 16px);
    }

    .screen-site .logo-sprite--hero {
        top: 28cqh;
        width: max(112px, 46.4cqw);
    }

    .screen-site .section__title {
        font-size: 24px;
    }

    .screen-site .section__text {
        font-size: 12px;
    }
}

@media (max-width: 760px) {
    :root {
        --after-aspect: 878 / 3342;
        --zoom-origin-y: 50%;
        --screen-image-left: 14.12%;
        --screen-image-top: 10.62%;
        --screen-image-width: 71.64%;
        --screen-image-height: 26.48%;
    }

    .intro-scroll-hint {
        top: 50%;
        left: calc(50% + var(--stage-initial-half-width, 0px) + clamp(20px, 12vw, 45px));
        right: auto;
        bottom: auto;
        transform: translateY(calc(-50% + 10px));
    }

    .intro-experience.is-after:not(.is-scroll-started) .intro-scroll-hint {
        transform: translateY(-50%);
    }

    .intro-after--pc,
    .tv-frame-image--pc {
        display: none;
    }

    .intro-after--sp,
    .tv-frame-image--sp {
        display: block;
    }

    .tv-screen-clip {
        border-radius: 0;
    }

    .screen-site .hero__lead {
        top: 7cqh;
        left: 8.6cqw;
        font-size: clamp(14px, 6.4cqw, 24px);
        line-height: 1.45;
    }

    .screen-site .hero__bar {
        top: 7cqh;
        right: 9.4cqw;
        width: max(26px, 12.3cqw);
    }

    .screen-site .logo-sprite--hero {
        top: 28cqh;
        width: max(112px, 46.4cqw);
    }

    .screen-site .hero__meta {
        left: 9.5cqw;
        bottom: 5.3cqh;
        font-size: clamp(7px, 2.7cqw, 10px);
    }

    .screen-site .hero__instagram {
        right: 9cqw;
        bottom: 6.4cqh;
        font-size: max(8px, 3.7cqw);
    }

    .access-info{
        margin-top: 40px;
    }
}

.hero__lead,
.hero__meta {
    line-height: 1;
}

.hero__lead img,
.hero__meta img {
    display: block;
    width: 100%;
    height: auto;
}

.hero__lead {
    width: 156px;
}

.hero__meta {
    width: 135px;
}

.screen-site .hero__lead {
    width: max(118px, 17.4cqw);
}

.screen-site .hero__meta {
    width: max(78px, 15cqw);
}

@media (max-width: 760px) {
    .hero__lead {
        width: clamp(132px, 40vw, 176px);
    }

    .hero__meta {
        width: clamp(112px, 34vw, 148px);
    }

    .screen-site .hero__lead {
        width: max(52px, 31.5cqw);
    }

    .screen-site .hero__meta {
        width: max(44px, 25.7cqw);
    }
}

body.event-archive-body {
    height: auto;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

.event-archive {
    min-height: 100vh;
    padding: 110px 24px 120px;
    background: var(--bg);
}

.event-archive__inner {
    width: min(100%, var(--content-width));
    margin: 0 auto;
}

.event-archive__title {
    color: var(--green);
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.event-archive__grid {
    width: 100%;
    margin-top: 64px;
    margin-bottom: 0;
}

.event-archive__empty {
    margin-top: 64px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.event-archive__pager {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 70px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-size: 14px;
    font-weight: 700;
}

.event-archive__pager .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid var(--line);
    color: var(--text);
    line-height: 1;
}

.event-archive__pager .page-numbers.current {
    border-color: var(--green);
    background: var(--green);
    color: #000;
}

.event-archive__pager .page-numbers.dots {
    min-width: auto;
    border-color: transparent;
    padding: 0 2px;
}

@media (max-width: 760px) {
    .event-archive {
        padding: 72px 20px 88px;
    }

    .event-archive__title {
        font-size: 28px;
    }

    .event-archive__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 14px;
        margin-top: 46px;
    }

    .event-archive .event-card p {
        margin-top: 10px;
        font-size: 10px;
    }

    .event-archive .event-card h2 {
        margin-top: 8px;
        font-size: 14px;
    }

    .event-archive .event-card__category {
        min-width: 58px;
        padding: 2px 5px;
        font-size: 8px;
    }

    .event-archive__pager {
        gap: 8px;
        margin-top: 52px;
        font-size: 12px;
    }

    .event-archive__pager .page-numbers {
        min-width: 34px;
        height: 34px;
        padding: 0 10px;
    }
    .button {
        transition: none;
    }

    .button:hover {
        transform: none;
    }
}
