.frontend-home {
    --home-design-width: 1200px;
    padding: 20px 0 21px;
}

body:has(.frontend-home) > .friend-links {
    display: none;
}

.home-top {
    display: grid;
    grid-template-columns: 710px minmax(0, 1fr);
    gap: 12px;
    width: var(--home-design-width);
    height: 400px;
    padding: 12px;
    overflow: hidden;
    background: #fff;
    border-radius: 8px;
}

.home-middle {
    display: grid;
    grid-template-columns: minmax(0, 712px) minmax(0, 474px);
    gap: 14px;
    width: var(--home-design-width);
    height: 534px;
    margin-top: 12px;
}

.home-hero {
    position: relative;
    width: 710px;
    height: 376px;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 947 / 500;
}

.home-hero__slides,
.home-hero__slide,
.home-hero__slide a {
    width: 100%;
    height: 100%;
}

.home-hero__slide {
    position: absolute;
    inset: 0;
    display: none;
    margin: 0;
}

.home-hero__slide:first-child {
    display: block;
}

.home-hero.is-ready .home-hero__slide {
    display: block;
    visibility: hidden;
    pointer-events: none;
}

.home-hero.is-ready .home-hero__slide.is-active {
    z-index: 2;
    visibility: visible;
    pointer-events: auto;
}

.home-hero__slide img,
.home-hero__design-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero__slide figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 52px;
    padding: 0 96px 0 18px;
    color: #fff;
    background: linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .56) 48%, rgba(0, 0, 0, 0) 100%);
    font-size: 16px;
    line-height: 22px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-hero__slide--fallback figcaption {
    bottom: 6.4%;
    height: 14.4%;
    min-height: 32px;
    margin-bottom: -21px;
}

.home-hero__dots {
    position: absolute;
    right: 18px;
    bottom: 22px;
    z-index: 4;
    display: flex;
    gap: 6px;
}

.home-hero__dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .95);
    border-radius: 50%;
    cursor: pointer;
}

.home-hero__dots button.is-active {
    background: #ffffff;
}

.home-hero:has(.home-hero__slide--fallback) .home-hero__dots {
    bottom: calc(13.6% - 4px);
}

.home-headlines {
    min-width: 0;
    height: 376px;
    overflow: hidden;
}

.home-draws,
.home-local-news,
.home-news-grid,
.home-friend-links,
.home-tools {
    overflow: hidden;
    background: #fff;
    border-radius: 8px;
}

.home-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: 0 16px;
}

.home-middle .home-section-heading {
    min-height: 73px;
    padding: 0 24px;
}

.home-middle .home-section-heading h2,
.home-news-card .home-section-heading h2,
.home-friend-links h2 {
    font-weight: 600;
}

.home-section-heading h2 {
    color: var(--site-text);
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.home-section-heading > a,
.home-section-heading nav a {
    color: var(--site-red);
    font-size: 13px;
    font-weight: 500;
}

.home-section-heading nav {
    display: flex;
    gap: 22px;
}

.home-section-heading .home-draws__service-links span,
.home-section-heading .home-draws__service-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--site-text);
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
}

.home-draws__service-links img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.home-article-list {
    padding: 0 18px 14px;
}

.home-article-list li {
    position: relative;
    min-width: 0;
    padding-left: 13px;
}

.home-article-list li::before {
    position: absolute;
    top: 50%;
    left: 1px;
    width: 4px;
    height: 4px;
    content: "";
    background: #d91e37;
    border-radius: 50%;
    transform: translateY(-50%);
}

.home-article-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 44px;
    color: var(--site-text);
    font-size: 14px;
}

.home-middle .home-article-list a {
    min-height: 50px;
}

.home-local-news .home-article-list a {
    font-weight: 400;
}

.home-article-list a:hover,
.home-article-list a:focus {
    color: var(--site-red);
}

.home-article-list a span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-article-list time {
    flex: 0 0 auto;
    color: var(--site-muted);
    font-size: 12px;
}

.home-headlines .home-section-heading h2,
.home-headlines .home-article-list a {
    color: var(--site-text);
}

.home-headlines .home-article-list li {
    padding-left: 0;
}

.home-headlines .home-article-list li::before {
    display: none;
}

.home-local-news .home-article-list li::before {
    background: var(--site-text);
}

.home-headlines .home-article-list time {
    color: var(--site-muted);
}

.home-headlines .home-section-heading > a,
.home-headlines .home-article-list a:hover,
.home-headlines .home-article-list a:focus {
    color: var(--site-red);
}

@media (min-width: 901px) {
    .home-headlines .home-section-heading h2 {
        font-size: 22px;
        font-weight: 600;
    }

    .home-headlines .home-section-heading > a {
        font-size: 13px;
        font-weight: 500;
    }

    .home-headlines .home-article-list li {
        height: 48px;
        margin-bottom: 2px;
    }

    .home-headlines .home-article-list li:last-child {
        margin-bottom: 0;
    }

    .home-headlines .home-article-list a {
        height: 48px;
        min-height: 48px;
        font-size: 18px;
        font-weight: 500;
        line-height: 48px;
    }
}

.home-headlines .home-article-list--compact li:nth-child(n + 7),
.home-local-news .home-article-list li:nth-child(n + 10),
.home-news-card .home-article-list li:nth-child(n + 7) {
    display: none;
}

.home-draws__list {
    padding: 0 12px 14px;
}

.home-draws__item {
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: 150px minmax(0, 1fr) 150px;
    padding: 12px 16px;
    overflow: hidden;
    background: #f5f8fa;
    border-radius: 7px;
}

.home-draws__item + .home-draws__item {
    margin-top: 8px;
}

.home-draws__item--ssq {
    height: 111px;
}

.home-draws__item--kl8 {
    height: 210px;
}

.home-draws__item--3d {
    height: 110px;
}

.home-draws__name {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-draws__name img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.home-draws__name strong {
    font-size: 16px;
    font-weight: 600;
}

.home-draws__result {
    min-width: 0;
}

.home-draws__result p {
    margin-bottom: 10px;
    color: var(--site-muted);
    font-size: 13px;
}

.home-draws__numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 320px;
}

.home-draws__numbers > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #fff;
    background: #eb1c2d;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
}

.home-draws__numbers > .home-draws__number--special {
    background: #176aca;
}

.home-draws__actions {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 218px;
    white-space: nowrap;
}

.home-draws__schedule {
    position: absolute;
    top: 20px;
    right: 30px;
    height: 18px;
    color: var(--site-muted);
    font-size: 15px;
    line-height: 18px;
    text-align: right;
}

.home-draws__action-links {
    position: absolute;
    right: 34px;
    display: flex;
    justify-content: flex-end;
    gap: 22px;
    width: max-content;
    height: 20px;
    color: var(--site-red);
    font-size: 16px;
    line-height: 20px;
}

.home-draws__item--ssq .home-draws__action-links {
    top: 60px;
}

.home-draws__item--kl8 .home-draws__action-links,
.home-draws__item--3d .home-draws__action-links {
    top: 57px;
}

.home-draws__action-links a,
.home-draws__action-links span {
    display: block;
    color: var(--site-red);
    white-space: nowrap;
}

.home-draws__action-links > * {
    width: 32px;
}

.home-empty {
    padding: 30px 18px;
    color: var(--site-muted);
    font-size: 14px;
    text-align: center;
}

.home-empty--draws {
    min-height: 160px;
}

.home-strip-banner {
    position: relative;
    width: var(--home-design-width);
    margin-top: 16px;
    overflow: hidden;
    border-radius: 7px;
}

.home-strip-banner__viewport {
    position: relative;
    aspect-ratio: 1200 / 200;
}

.home-strip-banner__slide,
.home-strip-banner__slide a {
    width: 100%;
    height: 100%;
}

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

.home-strip-banner__slide { display: none; }
.home-strip-banner__slide:first-child { display: block; }
.home-strip-banner.is-ready .home-strip-banner__slide {
    display: block;
    position: absolute;
    inset: 0;
    visibility: hidden;
    pointer-events: none;
}
.home-strip-banner.is-ready .home-strip-banner__slide.is-active {
    z-index: 2;
    visibility: visible;
    pointer-events: auto;
}
.home-strip-banner.is-ready .home-strip-banner__slide a { display: block; }
.home-strip-banner__controls {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}
.home-strip-banner__controls[hidden] { display: none; }
.home-strip-banner__controls button {
    border: 0;
    background: transparent;
    color: #fff;
    pointer-events: auto;
    cursor: pointer;
    min-width: 28px;
    min-height: 28px;
    font-size: 22px;
}
.home-strip-banner__controls [data-strip-prev],
.home-strip-banner__controls [data-strip-next] {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 48px;
    padding: 0;
    border-radius: 4px;
    background: rgba(0, 0, 0, .3);
    font-size: 30px;
    line-height: 1;
}
.home-strip-banner__controls [data-strip-prev] { left: 12px; }
.home-strip-banner__controls [data-strip-next] { right: 12px; }
.home-strip-banner__controls [data-strip-prev]:hover,
.home-strip-banner__controls [data-strip-next]:hover { background: rgba(0, 0, 0, .55); }
.home-strip-banner__controls button:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.home-strip-banner__controls [data-strip-dots] {
    display: none;
    position: absolute;
    right: 16px;
    bottom: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: calc(100% - 32px);
    padding: 0 4px;
    border-radius: 16px;
    background: rgba(0, 0, 0, .25);
}
.home-strip-banner__controls [data-strip-dots] button { font-size: 0; }
.home-strip-banner__controls [data-strip-dots] button::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    margin: auto;
    border-radius: 50%;
    background: rgba(255, 255, 255, .65);
}
.home-strip-banner__controls [aria-current="true"]::before { background: #ed153a; }

.home-hero.is-ready .home-hero__slide.is-entering-from-right,
.home-hero.is-ready .home-hero__slide.is-entering-from-left,
.home-strip-banner.is-ready .home-strip-banner__slide.is-entering-from-right,
.home-strip-banner.is-ready .home-strip-banner__slide.is-entering-from-left {
    z-index: 3;
    visibility: visible;
    pointer-events: none;
}

.home-hero.is-ready .home-hero__slide.is-exiting-to-left,
.home-hero.is-ready .home-hero__slide.is-exiting-to-right,
.home-strip-banner.is-ready .home-strip-banner__slide.is-exiting-to-left,
.home-strip-banner.is-ready .home-strip-banner__slide.is-exiting-to-right {
    z-index: 2;
    visibility: visible;
    pointer-events: none;
}

.home-hero .is-entering-from-right,
.home-strip-banner .is-entering-from-right { animation: home-slide-in-from-right .4s ease both; }
.home-hero .is-entering-from-left,
.home-strip-banner .is-entering-from-left { animation: home-slide-in-from-left .4s ease both; }
.home-hero .is-exiting-to-left,
.home-strip-banner .is-exiting-to-left { animation: home-slide-out-to-left .4s ease both; }
.home-hero .is-exiting-to-right,
.home-strip-banner .is-exiting-to-right { animation: home-slide-out-to-right .4s ease both; }

@keyframes home-slide-in-from-right {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

@keyframes home-slide-in-from-left {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@keyframes home-slide-out-to-left {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

@keyframes home-slide-out-to-right {
    from { transform: translateX(0); }
    to { transform: translateX(100%); }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero .is-entering-from-right,
    .home-hero .is-entering-from-left,
    .home-hero .is-exiting-to-left,
    .home-hero .is-exiting-to-right,
    .home-strip-banner .is-entering-from-right,
    .home-strip-banner .is-entering-from-left,
    .home-strip-banner .is-exiting-to-left,
    .home-strip-banner .is-exiting-to-right {
        animation: none;
    }
}

.home-lower {
    display: grid;
    grid-template-columns: minmax(0, 857px) minmax(0, 327px);
    gap: 16px;
    width: var(--home-design-width);
    height: 927px;
    margin-top: 16px;
}

.home-main-column {
    min-width: 0;
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 384px);
    height: 768px;
}

.home-news-card {
    min-width: 0;
    overflow: hidden;
    background: #fff;
}

.home-news-card:nth-child(-n + 2) {
    border-bottom: 1px solid #e7e7e7;
}

.home-news-card .home-section-heading {
    min-height: 69px;
    padding: 0 24px;
}

.home-news-card .home-section-heading > a {
    font-weight: 500;
}

.home-news-card .home-article-list {
    padding: 0 24px 12px;
}

.home-news-card .home-article-list a {
    min-height: 45px;
    font-weight: 400;
}

.home-friend-links {
    display: flex;
    align-items: baseline;
    align-content: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 28px;
    height: 143px;
    margin-top: 16px;
    padding: 28px 24px;
    color: var(--site-text);
    font-size: 16px;
}

.home-friend-links h2 {
    color: var(--site-text);
    font-size: 20px;
}

.home-friend-links a {
    white-space: nowrap;
}

.home-friend-links a:hover,
.home-friend-links a:focus-visible {
    color: var(--site-red);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.home-tools {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 927px;
    padding: 16px;
}

.home-tools__card {
    flex: 1 1 auto;
    overflow: hidden;
    border: 1px solid var(--site-red);
    border-radius: 6px;
}

.home-tools__card h2 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 57px;
    padding: 0 104px 0 20px;
    overflow: visible;
    color: #fff;
    background: linear-gradient(90deg, #e9233d 0%, #c9002b 100%);
    font-size: 20px;
    font-weight: 600;
}

.home-tools__card h2 img {
    position: absolute;
    top: 0;
    right: 4px;
    width: 100px;
    height: 83px;
    object-fit: contain;
}

.home-tools__game {
    padding: 14px 20px 15px;
}

.home-tools__game + .home-tools__game {
    position: relative;
}

.home-tools__game + .home-tools__game::before {
    position: absolute;
    top: 0;
    right: 20px;
    left: 20px;
    height: 1px;
    content: "";
    background: #e5eaed;
}

.home-tools__game header,
.home-tools__game p {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-tools__game header strong {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 600;
}

.home-tools__game header strong img {
    width: auto;
    max-width: 36px;
    height: 24px;
    object-fit: contain;
}

.home-tools__rule,
.home-tools__more {
    color: var(--site-red);
    font-size: 12px;
}

.home-tools__game p {
    margin-top: 12px;
    color: var(--site-text);
    font-size: 14px;
    font-weight: 400;
}

.home-tools__game p a {
    color: inherit;
}

.home-tools__game p a:hover,
.home-tools__game p a:focus-visible {
    color: var(--site-red);
}

.home-tools__calculator {
    display: block;
    margin-top: 12px;
    color: var(--site-muted);
    font-size: 13px;
    font-weight: 400;
}

.home-tools__calculator:hover,
.home-tools__calculator:focus-visible {
    color: var(--site-red);
}

.home-tools__more {
    display: block;
    padding: 6px 20px 15px;
    font-weight: 500;
    text-align: right;
}

.home-tools__more:hover,
.home-tools__more:focus-visible {
    color: var(--site-red-dark);
    background: #fff2f3;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.home-tools__more:focus-visible {
    outline: 2px solid var(--site-red);
    outline-offset: -3px;
}

.home-tools__image,
.home-tools__image img {
    display: block;
    width: 295px;
}

.home-tools__image {
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 6px;
}

@media (min-width: 901px) {
    .home-middle .home-section-heading h2,
    .home-news-card .home-section-heading h2,
    .home-tools__card h2 {
        font-size: 22px;
        font-weight: 600;
    }

    .home-draws__service-links {
        gap: 24px;
    }

    .home-section-heading .home-draws__service-links span,
    .home-section-heading .home-draws__service-links a {
        font-size: 16px;
        font-weight: 500;
    }

    .home-draws__item {
        padding-right: 20px;
        padding-left: 20px;
    }

    .home-draws__name {
        position: relative;
        display: block;
        align-self: stretch;
    }

    .home-draws__name img {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

    .home-draws__name strong {
        position: absolute;
        top: 10px;
        left: 74px;
        white-space: nowrap;
    }

    .home-draws__result {
        transform: translateX(8px);
    }

    .home-draws__result p {
        margin-bottom: 8px;
        font-size: 14px;
    }

    .home-draws__numbers {
        max-width: 336px;
        margin-left: -88px;
    }

    .home-draws__numbers > span {
        width: 40px;
        height: 40px;
    }

    .home-local-news .home-article-list a {
        height: 50px;
        min-height: 50px;
        font-size: 18px;
        line-height: 50px;
    }

    .home-news-card .home-article-list a {
        height: 48px;
        min-height: 48px;
        font-size: 16px;
        line-height: 48px;
    }

    .home-tools__card h2 {
        height: 57px;
    }

    .home-tools__game {
        min-height: 0;
        padding: 16px 20px;
    }

    .home-tools__game--ssq {
        height: 111px;
    }

    .home-tools__game--3d {
        height: 107px;
    }

    .home-tools__game--kl8 {
        height: 160px;
        padding-top: 30px;
    }

    .home-tools__game header strong {
        font-size: 16px;
    }

    .home-tools__rule,
    .home-tools__more {
        font-size: 13px;
        font-weight: 500;
    }

    .home-tools__game p {
        margin-top: 14px;
        font-size: 16px;
    }

    .home-tools__calculator {
        margin-top: 14px;
        color: var(--site-text);
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5;
    }

    .home-tools__more {
        padding-top: 8px;
        padding-bottom: 14px;
    }
}

@media (min-width: 901px) and (max-width: 1100px) {
    .home-draws__numbers {
        max-width: 290px;
        gap: 5px;
    }

    .home-draws__numbers > span {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 1232px) {
    .home-hero__slide--fallback figcaption {
        bottom: 0;
        margin-bottom: 0;
    }

    .frontend-home {
        --home-design-width: 100%;
    }

    .home-top,
    .home-middle,
    .home-lower {
        width: 100%;
    }

    .home-top,
    .home-middle {
        grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    }

    .home-top,
    .home-middle,
    .home-lower {
        height: auto;
    }

    .home-hero {
        width: 100%;
        height: auto;
        aspect-ratio: 710 / 376;
    }

    .home-headlines {
        width: 100%;
        height: auto;
        aspect-ratio: auto;
    }

    .home-lower {
        grid-template-columns: minmax(0, 1fr) 327px;
    }
}

@media (max-width: 900px) {
    .home-top,
    .home-middle,
    .home-lower {
        grid-template-columns: 1fr;
        height: auto;
    }

    .home-headlines,
    .home-middle,
    .home-news-grid,
    .home-tools {
        height: auto;
    }

    .home-news-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .home-news-card {
        min-height: 300px;
        border: 0;
        border-bottom: 1px solid #e7e7e7;
    }

    .home-tools__image,
    .home-tools__image img {
        width: 100%;
    }

    .home-tools {
        justify-self: center;
        width: 100%;
        max-width: 327px;
        margin-top: 0;
    }

    .home-middle .home-section-heading {
        min-height: 64px;
    }

    .home-local-news .home-article-list a,
    .home-news-card .home-article-list a {
        height: 46px;
        min-height: 46px;
        font-size: 16px;
        line-height: 46px;
    }
}

@media (max-width: 520px) {
    .home-top {
        padding: 8px;
    }

    .home-section-heading,
    .home-middle .home-section-heading,
    .home-news-card .home-section-heading {
        padding-right: 14px;
        padding-left: 14px;
    }

    .home-middle .home-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        min-height: 0;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .home-local-news .home-section-heading {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        gap: 16px;
    }

    .home-section-heading h2 {
        white-space: nowrap;
    }

    .home-section-heading nav {
        gap: 12px;
    }

    .home-draws__service-links {
        display: grid;
        grid-template-columns: max-content;
        justify-content: end;
        width: 100%;
    }

    .home-section-heading .home-draws__service-links span,
    .home-section-heading .home-draws__service-links a {
        gap: 5px;
        font-size: 12px;
    }

    .home-draws__service-links img {
        width: 18px;
        height: 18px;
    }

    .home-article-list,
    .home-news-card .home-article-list {
        padding-right: 14px;
        padding-left: 14px;
    }

    .home-local-news .home-article-list a,
    .home-news-card .home-article-list a {
        height: 44px;
        min-height: 44px;
        font-size: 15px;
        line-height: 44px;
    }

    .home-draws__item {
        grid-template-columns: 1fr;
        gap: 10px;
        height: auto;
        min-height: 120px;
        padding: 16px;
    }

    .home-draws__name img {
        width: 44px;
        height: 44px;
    }

    .home-draws__numbers {
        max-width: 100%;
    }

    .home-draws__numbers > span {
        width: 32px;
        height: 32px;
    }

    .home-draws__actions {
        position: static;
        display: flex;
        align-items: flex-end;
        flex-direction: column;
        width: auto;
        justify-content: flex-start;
        gap: 10px;
    }

    .home-draws__schedule,
    .home-draws__action-links {
        position: static;
        width: auto;
        height: auto;
        transform: none;
    }

    .home-friend-links {
        flex-wrap: wrap;
        height: auto;
        gap: 14px 22px;
        padding: 22px 16px;
    }

    .home-tools {
        gap: 12px;
        max-width: none;
        padding: 12px;
    }

    .home-tools__card h2 {
        height: 54px;
        padding: 0 90px 0 16px;
        font-size: 18px;
    }

    .home-tools__card h2 img {
        top: 1px;
        right: 4px;
        width: 84px;
        height: 70px;
    }

    .home-tools__game {
        padding-right: 16px;
        padding-left: 16px;
    }

    .home-tools__game + .home-tools__game::before {
        right: 16px;
        left: 16px;
    }

    .home-tools__calculator {
        color: var(--site-text);
        font-size: 14px;
        line-height: 1.5;
    }
}
