
.home-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.home-hero__background {
    position: absolute;
    inset: -24px;
    background:
        linear-gradient(50deg, color-mix(in srgb, var(--gj-secondary) 82%, transparent), color-mix(in srgb, var(--gj-primary) 18%, transparent)),
        var(--hero-image) center / cover;
    filter: blur(14px);
    transform: scale(1.04);
}

.home-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--gj-container);
    margin: 0 auto;
    padding: 80px var(--gj-gutter);
    color: var(--gj-light);
}

.home-hero__content {
    max-width: 680px;
}


.home-hero__title {
    font-size: clamp(64px, 9vw, 112px);
    line-height: 0.9;
}


.home-hero__text {
    max-width: 620px;
    margin: 24px 0 40px;
    color: var(--gj-light);
    font-size: 18px;
    line-height: 1.6;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.home-section {
    padding: 80px var(--gj-gutter);
    background-color: var(--gj-light);
}

.home-section__inner {
    width: 100%;
    max-width: var(--gj-container);
    margin: 0 auto;
}

.home-section__title {
    margin: 0 0 32px;
    color: var(--gj-primary);
    font-family: var(--gj-font-title);
    font-size: 48px;
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.home-quick-links__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px;
}

.home-card {
    min-height: 280px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    background: var(--gj-light);
    border: 1px solid color-mix(in srgb, var(--gj-primary) 75%, transparent);
    border-radius: 12px;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--gj-secondary) 12%, transparent);
}

.home-card__icon {
    margin-bottom: 24px;
    color: var(--gj-primary);
}

.home-card__icon .material-symbols-outlined {
    font-size: 44px;
}

.home-card__title {
    margin: 0 0 12px;
    color: var(--gj-secondary);
    font-family: var(--gj-font-title);
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: 0.03em;
}

.home-card__text {
    margin: 0 0 24px;
    color: var(--gj-secondary);
    font-size: 16px;
    line-height: 1.5;
}

.home-card__link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--gj-primary);
    font-family: var(--gj-font-ui);
    font-weight: 700;
    text-decoration: none;
}

.home-card__link:hover {
    gap: 12px;
}

.home-quick-links {
    padding: 80px var(--gj-gutter);
    background: var(--gj-light);
}

.home-quick-links__inner {
    width: 100%;
    max-width: var(--gj-container);
    margin: 0 auto;
}

.home-quick-links__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px;
}

.home-card {
    min-height: 280px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--gj-primary) 22%, transparent);
    border-radius: 12px;
    background: color-mix(in srgb, var(--gj-primary) 4%, var(--gj-light));
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--gj-secondary) 12%, transparent);
}

.home-card__icon {
    margin-bottom: 24px;
    color: var(--gj-primary);
}

.home-card__icon .material-symbols-outlined {
    font-size: 44px;
}

.home-card__title {
    margin: 0 0 12px;
    color: var(--gj-secondary);
    font-family: var(--gj-font-title);
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 0.03em;
    font-weight: 400;
}

.home-card__text {
    margin: 0 0 24px;
    color: color-mix(in srgb, var(--gj-secondary) 75%, transparent);
    font-size: 16px;
    line-height: 24px;
}

.home-card__link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--gj-primary);
    font-family: var(--gj-font-ui);
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 180ms ease;
}

.home-card__link:hover {
    gap: 12px;
}

.home-card__link .material-symbols-outlined {
    margin-left: 4px;
    font-size: 20px;
}
@media (max-width: 1024px) {


    .home-quick-links__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 1024px) {
    .home-events__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {


    .home-hero {
        min-height: 620px;
    }

    .home-hero__inner {
        padding: 64px 20px;
    }

    .home-hero__title {
        font-size: 52px;
    }

    .home-hero__text {
        font-size: 16px;
    }

    .home-hero .button {
        width: 100%;
        padding-inline: 24px;
    }

    .home-section {
        padding: 56px 20px;
    }

    .home-section__title {
        font-size: 40px;
    }

    .home-card {
        padding: 32px;
    }
}

.home-presentation {
    padding: 80px var(--gj-gutter);
    background: var(--gj-secondary);
    color: var(--gj-light);
}

.home-presentation__inner {
    width: 100%;
    max-width: var(--gj-container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.home-presentation__content {
    width: 50%;
}


.home-presentation__text {
    margin: 0 0 24px;
    color: var(--gj-light);
    font-size: 18px;
    line-height: 1.6;
}

.home-presentation__text:last-child {
    margin-bottom: 0;
}

.home-presentation__media {
    width: 50%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 4px solid color-mix(in srgb, var(--gj-primary) 70%, var(--gj-light));
    border-radius: 24px;
    box-shadow: 0 24px 56px color-mix(in srgb, var(--gj-secondary) 32%, transparent);
}

.home-presentation__image {
    width: 100%;
    height: 100%;
    background: var(--presentation-image) center / cover no-repeat;
}

@media (max-width: 900px) {
    .home-presentation__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 48px;
    }

    .home-presentation__content,
    .home-presentation__media {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .home-events__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .home-presentation {
        padding: 56px 20px;
    }

    .home-presentation__title {
        font-size: 40px;
    }

    .home-presentation__text {
        font-size: 16px;
    }

    .home-presentation__media {
        border-radius: 18px;
    }
}

.home-events {
    padding: 64px var(--gj-gutter);
    background: var(--gj-light);
}

.home-events__inner {
    width: 100%;
    max-width: var(--gj-container);
    margin: 0 auto;
}

.home-events__header {
    margin-bottom: 48px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}


.home-events__calendar-link {
    gap: 8px;
    border-bottom: 0;
}

.home-events__calendar-link .material-symbols-outlined {
    font-size: 20px;
}

.home-events__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

@media (max-width: 1024px) {
    .home-events__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .home-events {
        padding: 56px 20px;
    }

    .home-events__header {
        display: block;
        margin-bottom: 32px;
    }

    .home-events__calendar-link {
        margin-top: 20px;
    }

    .home-events__grid {
        grid-template-columns: 1fr;
    }

    .home-event-card__image {
        height: 160px;
    }
}

.home-event-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--gj-primary) 22%, transparent);
    border-radius: 12px;
    background: var(--gj-light);
    box-shadow: 0 2px 8px color-mix(in srgb, var(--gj-secondary) 8%, transparent);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--gj-secondary) 12%, transparent);
}

.home-event-card__image {
    height: 230px;
    flex-shrink: 0;
    background: var(--home-event-image) center / cover no-repeat;
}

.home-event-card__body {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.home-event-card__date {
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--gj-primary);
    font-family: var(--gj-font-text);
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.home-event-card__date .material-symbols-outlined {
    font-size: 16px;
}

.home-event-card__title {
    margin: 0;
    color: var(--gj-secondary);
    font-family: var(--gj-font-ui);
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
}

.home-event-card__footer {
    margin-top: auto;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.home-event-card__category {
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--gj-accent);
    color: var(--gj-light);
    font-family: var(--gj-font-text);
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.home-events .home-event-card__category--event,
.home-events .home-event-card__category--free-play,
.home-events .home-event-card__category--default {
    background: var(--gj-accent);
    color: var(--gj-light);
}

.home-event-card__price {
    color: var(--gj-primary);
    font-family: var(--gj-font-ui);
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}
.home-tcg {
    padding: 80px var(--gj-gutter);
    background: var(--gj-secondary);
}

.home-tcg__inner {
    width: 100%;
    max-width: var(--gj-container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 7fr 5fr;
    align-items: center;
    gap: 80px;
}

.home-tcg__media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.home-tcg__image {
    min-height: 320px;
    border-radius: 12px;
    background-position: center;
    background-size: cover;
    box-shadow: 0 18px 36px color-mix(in srgb, var(--gj-secondary) 18%, transparent);
}

.home-tcg__image--cards {
    background-image: var(--tcg-cards-image);
}

.home-tcg__image--shelf {
    margin-top: 80px;
    background-image: var(--tcg-shelf-image);
}

.home-tcg__text {
    margin: 0 0 32px;
    color: var(--gj-light);
    font-size: 16px;
    line-height: 1.6;
}

.home-tcg__list {
    margin: 0 0 40px;
    padding: 0;
    display: grid;
    gap: 12px;
    list-style: none;
}

.home-tcg__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gj-light);
    font-family: var(--gj-font-ui);
    font-size: 16px;
    font-weight: 700;
}

.home-tcg__list .material-symbols-outlined {
    color: var(--gj-accent);
    font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

.home-quick-links {
    padding: 80px var(--gj-gutter);
    background: var(--gj-light);
}

.home-quick-links__inner {
    width: 100%;
    max-width: var(--gj-container);
    margin: 0 auto;
}

.home-quick-links__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px;
}

.home-card {
    min-height: 280px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--gj-primary) 22%, transparent);
    border-radius: 12px;
    background: color-mix(in srgb, var(--gj-primary) 4%, var(--gj-light));
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--gj-secondary) 12%, transparent);
}

.home-card__icon {
    margin-bottom: 24px;
    color: var(--gj-accent);
}

.home-card__icon .material-symbols-outlined {
    font-size: 44px;
}

.home-card__title {
    margin: 0 0 12px;
    color: var(--gj-secondary);
    font-family: var(--gj-font-title);
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 0.03em;
    font-weight: 400;
}

.home-card__text {
    margin: 0 0 24px;
    color: color-mix(in srgb, var(--gj-secondary) 75%, transparent);
    font-size: 16px;
    line-height: 24px;
}

.home-card__link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--gj-accent);
    font-family: var(--gj-font-ui);
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 180ms ease;
}

.home-card__link:hover {
    gap: 12px;
}

.home-card__link .material-symbols-outlined {
    margin-left: 4px;
    font-size: 20px;
}
@media (max-width: 1024px) {
    .home-tcg__inner {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .home-tcg__media-grid {
        order: 2;
    }

    .home-tcg__content {
        order: 1;
    }
}

@media (max-width: 1024px) {
    .home-events__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .home-tcg {
        padding: 56px 20px;
    }

    .home-tcg__media-grid {
        grid-template-columns: 1fr;
    }

    .home-tcg__image {
        min-height: 240px;
    }

    .home-tcg__image--shelf {
        margin-top: 0;
    }

    .home-tcg__title {
        font-size: 40px;
    }

    .home-tcg .button {
        width: 100%;
    }
}

.home-practical__header {
    max-width: 100%;
    margin: 0 0 48px;
}


.home-practical__intro {
    max-width: 980px;
    margin: 16px 0 0;
    color: color-mix(in srgb, var(--gj-secondary) 75%, transparent);
    font-size: 18px;
    line-height: 1.6;
}

.home-practical__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 40px;
    align-items: start;
}

.home-practical__location {
    padding: 32px;
    border: 1px solid color-mix(in srgb, var(--gj-primary) 18%, transparent);
    border-radius: 16px;
    background: var(--gj-secondary);
}

.home-practical__side {
    display: grid;
    gap: 24px;
}

.home-practical__card {
    padding: 32px;
    border: 1px solid color-mix(in srgb, var(--gj-primary) 18%, transparent);
    border-radius: 16px;
    background: var(--gj-secondary);
}


.home-practical__address {
    margin: 0 0 24px;
    color: var(--gj-light);
    font-style: normal;
    font-size: 16px;
    line-height: 1.5;
}

.home-practical__map {
    height: 320px;
    width: 100%;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--gj-primary) 45%, transparent);
    border-radius: 12px;
    background: var(--gj-light);
}

.home-practical__map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.home-practical__hours {
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-practical__hours li {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 10px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--gj-primary) 22%, transparent);
    color: var(--gj-light);
    font-size: 16px;
}

.home-practical__hours li:first-child {
    padding-top: 0;
}

.home-practical__hours li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.home-practical__hours strong {
    color: var(--gj-light);
    font-weight: 800;
    white-space: nowrap;
}

.home-practical__text {
    margin: 0 0 24px;
    color: var(--gj-light);
    font-size: 16px;
    line-height: 1.5;
}

.home-practical__links {
    display: grid;
    gap: 12px;
}

.home-practical__links a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gj-light);
    text-decoration: underline;
    font-family: var(--gj-font-ui);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.home-practical__links a:hover {
    color: var(--gj-accent);
}

.home-practical__socials {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.home-practical__socials a {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--gj-light);
    color: var(--gj-secondary);
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 4px 0 color-mix(in srgb, var(--gj-light) 16%, transparent);
    transition: background 160ms ease, color 160ms ease, transform 120ms ease, box-shadow 120ms ease;
}

.home-practical__socials a:hover {
    background: var(--gj-accent);
    color: var(--gj-light);
    transform: translateY(-3px);
    box-shadow: 0 7px 0 color-mix(in srgb, var(--gj-light) 18%, transparent);
}

.home-practical__socials a:active {
    transform: translateY(2px);
    box-shadow: none;
}

@media (max-width: 1024px) {
    .home-practical__layout {
        grid-template-columns: 1fr;
    }

    .home-practical__map {
        height: 280px;
    }
}

@media (max-width: 1024px) {
    .home-events__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .home-practical__header {
        margin-bottom: 32px;
    }

    .home-practical__main-title {
        font-size: 38px;
    }

    .home-practical__location,
    .home-practical__card {
        padding: 24px;
    }

    .home-practical__title {
        font-size: 32px;
    }

    .home-practical__hours li {
        flex-direction: column;
        gap: 4px;
    }

    .home-practical__socials {
        gap: 16px;
    }
}


.event-page {
    background: var(--gj-light);
    color: var(--gj-secondary);
    min-height: 100vh;
}

.event-page__hero {
    padding: 80px var(--gj-gutter) 48px;
    background: var(--gj-primary);
    color: var(--gj-light);
}

.event-page__inner {
    width: 100%;
    max-width: var(--gj-container);
    margin: 0 auto;
}

.event-page__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    color: var(--gj-tertiary);
    font-family: var(--gj-font-ui);
    font-weight: 700;
    text-decoration: none;
}

.event-page__back:hover {
    color: var(--gj-light);
}

.event-page__eyebrow {
    margin: 0 0 12px;
    color: var(--gj-tertiary);
    font-family: var(--gj-font-ui);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.event-page__title {
    margin: 0 0 24px;
    color: var(--gj-light);
    font-family: var(--gj-font-title);
    font-size: clamp(56px, 8vw, 96px);
    line-height: 0.9;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.event-page__intro {
    max-width: 760px;
    margin: 0;
    color: var(--gj-light);
    font-size: 18px;
    line-height: 1.6;
}

.event-page__list-section {
    padding: 80px var(--gj-gutter);
}

.event-page__empty {
    padding: 48px;
    border-radius: 16px;
    background: var(--gj-light);
    border: 1px solid var(--gj-primary);
    color: var(--gj-secondary);
    font-size: 18px;
}

.event-page__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.event-page-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--gj-light);
    border: 1px solid var(--gj-primary);
    border-radius: 16px;
    box-shadow: 0 2px 8px color-mix(in srgb, var(--gj-secondary) 6%, transparent);
}

.event-page-card__image {
    height: 220px;
    background: var(--event-image) center / cover;
}

.event-page-card__body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.event-page-card__date {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gj-primary);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.event-page-card__date .material-symbols-outlined {
    font-size: 18px;
}

.event-page-card__title {
    margin: 0;
    color: var(--gj-secondary);
    font-family: var(--gj-font-ui);
    font-size: 24px;
    line-height: 1.25;
    font-weight: 800;
}

.event-page-card__description {
    margin: 0;
    color: var(--gj-secondary);
    font-size: 16px;
    line-height: 1.5;
}

.event-page-card__footer {
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.event-page-card__category {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--gj-tertiary);
    color: var(--gj-secondary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.event-page-card__price {
    color: var(--gj-primary);
    font-size: 16px;
    font-weight: 800;
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .event-page__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .home-events__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .event-page__hero {
        padding: 56px 20px 40px;
    }

    .event-page__list-section {
        padding: 56px 20px;
    }

    .event-page__grid {
        grid-template-columns: 1fr;
    }

    .event-page-card__image {
        height: 180px;
    }
}

/* Tablette - liens rapides */
@media (min-width: 769px) and (max-width: 1024px) {
    .home-quick-links {
        padding: 64px 24px;
    }

    .home-quick-links__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }

    .home-card {
        min-width: 0;
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .home-quick-links {
        padding: 56px 20px;
    }

    .home-quick-links__inner {
        width: 100%;
        max-width: 100%;
    }

    .home-quick-links__grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
        gap: 24px;
    }

    .home-card {
        width: 100%;
        min-width: 0;
        min-height: auto;
        padding: 32px 24px;
    }

    .home-card__title,
    .home-card__text,
    .home-card__link {
        max-width: 100%;
        overflow-wrap: break-word;
    }
}

/* Mobile - Informations utiles */

@media (max-width: 1024px) {
    .home-events__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .home-practical__header {
        margin-bottom: 32px;
    }

    .home-practical__layout {
        gap: 24px;
    }

    .home-practical__side {
        gap: 24px;
    }

    .home-practical__location,
    .home-practical__card {
        padding: 24px;
        border-radius: 16px;
    }

    .home-practical__main-title {
        font-size: 38px;
    }

    .home-practical__intro {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.6;
    }

    .home-practical__title {
        margin-bottom: 24px;
        font-size: 32px;
        line-height: 1;
    }

    .home-practical__address,
    .home-practical__text {
        font-size: 16px;
        line-height: 1.5;
    }

    .home-practical__map {
        height: 280px;
    }

    .home-practical__hours li {
        flex-direction: column;
        gap: 4px;
        padding: 12px 0;
    }

    .home-practical__links a {
        min-width: 0;
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
        font-size: 16px;
    }

    .home-practical__socials {
        gap: 16px;
        margin-top: 24px;
        flex-wrap: wrap;
    }
}

@media (max-width: 420px) {
    .home-practical__location,
    .home-practical__card {
        padding: 22px;
    }

    .home-practical__map {
        height: 240px;
    }

    .home-practical__socials a {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}
