:root {
    --journal-sprite: url("../img/journal/journal-sprite.svg");
}
.journal-media {
    background: #f4f4f4;
    color: #343333;
}

.journal-hero {
    position: relative;
    min-height: 430px;
    background: #3ea74f;
    color: #ffffff;
    overflow: hidden;
}

.journal-hero__inner {
    position: relative;
    max-width: 1280px;
    min-height: 430px;
    margin: 0 auto;
    padding: 30px 0 72px;
}

.journal-hero__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 65px;
    font-size: 13px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.7);
}

.journal-hero__breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.journal-hero__breadcrumbs a:hover {
    color: #ffffff;
}

.journal-hero__title {
    position: relative;
    z-index: 2;
    display: block;
    margin: 58px auto 0;
    color: #ffffff;
    text-align: center;
    font-size: 132px;
    line-height: 0.82;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}
.journal-hero__text {
    max-width: 500px;
    margin: 58px auto 0;
    text-align: center;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 400;
}

.journal-hero__flower,
.journal-hero__sun {
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
}

.journal-hero__flower {
    left: 40px;
    top: 185px;
    width: 150px;
    height: 210px;
    background-image: url("../img/journal/hero-flower.svg");
}

.journal-hero__sun {
    right: 30px;
    top: 85px;
    width: 190px;
    height: 170px;
    background-image: url("../img/journal/hero-sun.svg");
}

.journal-media__body {
    position: relative;
    z-index: 2;
    margin-top: -18px;
    padding: 104px 0 40px;
    border-radius: 8px 8px 0 0;
    background: #f4f4f4;
}

.journal-media-container {
    max-width: 1280px;
    margin: 0 auto;
}

.journal-media-section {
    margin-bottom: 112px;
}

.journal-media-section__title {
    margin: 0 0 58px;
    color: #343333;
    font-size: 52px;
    line-height: 1.05;
    font-weight: 400;
    text-align: center;
}

.journal-slider {
    position: relative;
}

.journal-slider__swiper {
    overflow: hidden;
}

.journal-slider__slide {
    height: auto;
}

.journal-card {
    display: flex;
    flex-direction: column;
    min-height: 370px;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: #ffffff;
    color: #343333;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.journal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(52, 51, 51, 0.12);
}

.journal-card__image-wrap {
    position: relative;
    display: block;
    height: 235px;
    overflow: hidden;
    background: #e5e5e5;
}

.journal-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.journal-card:hover .journal-card__image {
    transform: scale(1.035);
}

.journal-card__tag {
    position: absolute;
    left: 14px;
    top: 14px;
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #ffffff;
    color: #343333;
    font-size: 10px;
    line-height: 1;
    text-transform: uppercase;
}

.journal-card__content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 26px 30px 24px;
}

.journal-card__title {
    display: block;
    color: #343333;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 400;
}

.journal-card__date {
    display: block;
    margin-top: auto;
    padding-top: 28px;
    color: rgba(52, 51, 51, 0.45);
    font-size: 13px;
    line-height: 1.2;
}

.journal-card--plain {
    min-height: 215px;
}

.journal-card--plain .journal-card__content {
    padding: 34px 30px 28px;
}

.journal-card__plain-tag {
    display: block;
    margin-bottom: 34px;
    color: #343333;
    font-size: 42px;
    line-height: 1;
    font-weight: 600;
}

.journal-slider__arrow {
    position: absolute;
    top: 152px;
    z-index: 3;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.journal-slider__arrow span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 26px;
    height: 14px;
    transform: translate(-50%, -50%);
}

.journal-slider__arrow span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: #343333;
}

.journal-slider__arrow span::after {
    content: "";
    position: absolute;
    top: 2px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #343333;
    border-left: 2px solid #343333;
}

.journal-slider__arrow--prev {
    left: -64px;
}

.journal-slider__arrow--prev span::after {
    left: 0;
    transform: rotate(-45deg);
}

.journal-slider__arrow--next {
    right: -64px;
}

.journal-slider__arrow--next span::after {
    right: 0;
    transform: rotate(135deg);
}

.journal-slider__arrow.swiper-button-disabled {
    opacity: 0.25;
    cursor: default;
}

.journal-slider__more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.journal-slider__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    min-height: 40px;
    padding: 10px 28px;
    border-radius: 999px;
    background: #3ea74f;
    color: #ffffff;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.journal-slider__more:hover {
    background: #348f43;
    transform: translateY(-2px);
}

.journal-press {
    margin-top: 28px;
    margin-bottom: 40px;
}

.journal-press__box {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border-radius: 8px;
    background: #3ea74f;
    color: #ffffff;
}

.journal-press__content {
    position: relative;
    z-index: 2;
    width: 360px;
    padding: 64px 0 60px 62px;
}

.journal-press__title {
    margin-bottom: 72px;
    font-size: 52px;
    line-height: 0.92;
    font-weight: 400;
}

.journal-press__person strong {
    display: block;
    margin-bottom: 8px;
    font-size: 27px;
    line-height: 1.1;
    font-weight: 400;
}

.journal-press__person span {
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.25;
}

.journal-press__person a {
    color: #ffffff;
    font-size: 24px;
    line-height: 1.15;
    text-decoration: none;
}

.journal-press__person a:hover {
    text-decoration: underline;
}

.journal-press__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    margin-top: 70px;
    padding: 9px 26px;
    border-radius: 999px;
    background: #ff7a22;
    color: #ffffff;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.journal-press__btn:hover {
    background: #eb6b17;
    transform: translateY(-2px);
}

.journal-press__photo {
    position: absolute;
    left: 520px;
    bottom: -50px;
    width: 395px;
    height: 430px;
    background: url("../img/journal/press-photo.jpg") center / cover no-repeat;
    transform: rotate(-8deg);
}

.journal-press__decor {
    position: absolute;
    right: 45px;
    top: 42px;
    width: 360px;
    height: 420px;
    background: url("../img/journal/press-decor.svg") center / contain no-repeat;
}
.journal-hero {
    position: relative;
    min-height: 420px;
    background: #3ea74f;
    color: #ffffff;
    overflow: hidden;
}

.journal-hero__inner {
    position: relative;
    max-width: 1280px;
    min-height: 420px;
    margin: 0 auto;
    padding: 30px 0 62px;
}

.journal-hero__title {
    display: block;
    width: 759px;
    height: 139px;
    margin: 64px auto 0;
    overflow: hidden;
    color: transparent;
    font-size: 0;
    line-height: 0;
    text-indent: -9999px;
    background-image: var(--journal-sprite);
    background-repeat: no-repeat;
    background-size: 1440px 4331px;
    background-position: -337px -158px;
}

.journal-hero__flower,
.journal-hero__sun {
    position: absolute;
    z-index: 1;
    display: block;
    background-image: var(--journal-sprite);
    background-repeat: no-repeat;
    background-size: 1440px 4331px;
    pointer-events: none;
}

.journal-hero__flower {
    left: -9px;
    top: 195px;
    width: 148px;
    height: 206px;
    background-position: -71px -255px;
}

.journal-hero__sun {
    right: -20px;
    top: 38px;
    width: 203px;
    height: 178px;
    background-position: -1177px -98px;
}

.journal-hero__breadcrumbs,
.journal-hero__text {
    position: relative;
    z-index: 2;
}

.journal-hero__text {
    max-width: 560px;
    margin: 28px auto 0;
    text-align: center;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.08;
    font-weight: 400;
}
.journal-press__decor {
    position: absolute;
    right: 35px;
    top: 40px;
    width: 387px;
    height: 456px;
    background-image: var(--journal-sprite);
    background-repeat: no-repeat;
    background-size: 1440px 4331px;
    background-position: -936px -3327px;
    pointer-events: none;
}
.journal-press__photo {
    position: absolute;
    left: 520px;
    bottom: -52px;
    z-index: 1;
    width: 405px;
    height: 430px;
    overflow: hidden;
    border-radius: 0;
    transform: rotate(-8deg);
    transform-origin: center center;
}

.journal-press__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (min-width: 768px) and (max-width: 1023px) {

    .journal-media {
        overflow: hidden;
        background: #f4f4f4;
    }

    .journal-hero {
        min-height: 380px;
        background: #3ea74f;
        overflow: hidden;
    }

    .journal-hero__inner {
        position: relative;
        max-width: none;
        min-height: 380px;
        margin: 0;
        padding: 18px 10px 48px;
    }

    .journal-hero__breadcrumbs {
        position: relative;
        z-index: 3;
        display: flex;
        gap: 6px;
        margin: 0;
        color: rgba(255, 255, 255, 0.72);
        font-size: 10px;
        line-height: 1.2;
    }

    .journal-hero__breadcrumbs a {
        color: rgba(255, 255, 255, 0.72);
    }

    .journal-hero__title {
        position: relative;
        z-index: 2;
        display: block;
        margin: 70px auto 0;
        padding: 0;
        text-align: center;
        font-size: 0;
        line-height: 0;
    }

    .journal-hero__title-text {
        display: inline-block;
        color: #ffffff;
        font-size: 86px;
        line-height: 0.82;
        font-weight: 400;
        letter-spacing: 0;
        text-transform: none;
    }

    .journal-hero__text {
        position: relative;
        z-index: 3;
        max-width: 410px;
        margin: 30px auto 0;
        color: #ffffff;
        text-align: center;
        font-size: 13px;
        line-height: 1.16;
        font-weight: 400;
    }

    .journal-hero__flower {
        left: 34px;
        top: 244px;
        z-index: 1;
        width: 74px;
        height: 108px;
        background-size: 710px auto;
        background-position: -34px -125px;
    }

    .journal-hero__sun {
        right: 26px;
        top: 58px;
        z-index: 1;
        width: 98px;
        height: 88px;
        background-size: 710px auto;
        background-position: -580px -48px;
    }

    .journal-media__body {
        position: relative;
        z-index: 4;
        margin-top: -24px;
        padding: 74px 0 36px;
        border-radius: 8px 8px 0 0;
        background: #f4f4f4;
    }

    .journal-media-container {
        max-width: none;
        width: auto;
        margin: 0;
        padding: 0 48px;
    }

    .journal-media-section {
        margin-bottom: 88px;
    }

    .journal-media-section__title {
        margin: 0 0 42px;
        color: #343333;
        text-align: center;
        font-size: 40px;
        line-height: 1.05;
        font-weight: 400;
    }

    .journal-slider {
        position: relative;
        margin: 0;
    }

    .journal-slider__swiper {
        overflow: visible;
    }

    .journal-card {
        min-height: 270px;
        border-radius: 8px;
    }

    .journal-card__image-wrap {
        height: 165px;
    }

    .journal-card__content {
        padding: 18px 18px 20px;
    }

    .journal-card__title {
        font-size: 14px;
        line-height: 1.22;
    }

    .journal-card__date {
        padding-top: 20px;
        font-size: 10px;
        line-height: 1.2;
    }

    .journal-card__tag {
        left: 10px;
        top: 10px;
        min-height: 18px;
        padding: 3px 8px;
        font-size: 8px;
        line-height: 1;
    }

    .journal-slider__arrow {
        top: 112px;
        width: 26px;
        height: 26px;
    }

    .journal-slider__arrow span {
        width: 22px;
        height: 12px;
    }

    .journal-slider__arrow span::before {
        top: 5px;
        width: 22px;
        height: 1.5px;
    }

    .journal-slider__arrow span::after {
        width: 8px;
        height: 8px;
        border-top-width: 1.5px;
        border-left-width: 1.5px;
    }

    .journal-slider__arrow--prev {
        left: -42px;
    }

    .journal-slider__arrow--next {
        right: -42px;
    }

    .journal-slider__more-wrap {
        margin-top: 32px;
    }

    .journal-slider__more {
        min-width: 200px;
        min-height: 38px;
        padding: 10px 28px;
        font-size: 10px;
        border-radius: 999px;
    }

    .journal-card--plain {
        min-height: 190px;
    }

    .journal-card--plain .journal-card__content {
        padding: 30px 22px 24px;
    }

    .journal-card__plain-tag {
        margin-bottom: 26px;
        font-size: 34px;
        line-height: 1;
    }

    .journal-press {
        margin-top: 8px;
        margin-bottom: 28px;
    }

    .journal-press .journal-media-container {
        padding: 0 10px;
    }

    .journal-press__box {
        position: relative;
        min-height: 320px;
        overflow: hidden;
        border-radius: 8px;
        background: #3ea74f;
    }

    .journal-press__content {
        position: relative;
        z-index: 4;
        width: 260px;
        padding: 30px 0 28px 34px;
    }

    .journal-press__title {
        margin-bottom: 48px;
        color: #ffffff;
        font-size: 40px;
        line-height: 0.95;
        font-weight: 400;
    }

    .journal-press__person strong {
        margin-bottom: 5px;
        color: #ffffff;
        font-size: 18px;
        line-height: 1.12;
        font-weight: 400;
    }

    .journal-press__person span {
        margin-bottom: 5px;
        color: #ffffff;
        font-size: 12px;
        line-height: 1.2;
    }

    .journal-press__person a {
        color: #ffffff;
        font-size: 17px;
        line-height: 1.15;
    }

    .journal-press__btn {
        min-height: 36px;
        margin-top: 22px;
        padding: 10px 22px;
        border-radius: 999px;
        font-size: 9px;
    }

    .journal-press__photo {
        position: absolute;
        left: 330px;
        bottom: -56px;
        z-index: 2;
        width: 250px;
        height: 300px;
        overflow: hidden;
        transform: rotate(-8deg);
    }

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

    .journal-press__decor {
        position: absolute;
        right: -36px;
        top: 64px;
        z-index: 3;
        width: 180px;
        height: 250px;
        background-image: var(--journal-sprite);
        background-repeat: no-repeat;
        background-size: 710px auto;
        background-position: -461px -1640px;
        pointer-events: none;
    }
}
@media (max-width: 767px) {

    .journal-media {
        overflow: hidden;
        background: #f4f4f4;
    }

    .journal-hero {
        position: relative;
        min-height: 368px;
        background: #3ea74f;
        overflow: hidden;
    }

    .journal-hero__inner {
        position: relative;
        max-width: none;
        min-height: 368px;
        margin: 0;
        padding: 14px 10px 36px;
    }

    .journal-hero__breadcrumbs {
        position: relative;
        z-index: 3;
        display: flex;
        align-items: center;
        gap: 5px;
        margin: 0;
        color: rgba(255, 255, 255, 0.72);
        font-size: 11px;
        line-height: 1.2;
    }

    .journal-hero__breadcrumbs a {
        color: rgba(255, 255, 255, 0.72);
        text-decoration: none;
    }

    .journal-hero__title {
        position: relative;
        z-index: 2;
        display: block;
        margin: 62px auto 0;
        padding: 0;
        text-align: center;
        font-size: 0;
        line-height: 0;
    }

    .journal-hero__title-text {
        display: inline-block;
        color: #ffffff;
        font-size: 68px;
        line-height: 0.82;
        font-weight: 400;
        letter-spacing: 0;
        text-transform: none;
        white-space: nowrap;
    }

    .journal-hero__text {
        position: relative;
        z-index: 3;
        max-width: 310px;
        margin: 32px auto 0;
        color: #ffffff;
        text-align: center;
        font-size: 16px;
        line-height: 1.05;
        font-weight: 400;
    }

    .journal-hero__flower {
        left: 18px;
        top: 254px;
        z-index: 1;
        width: 82px;
        height: 118px;
        background-image: var(--journal-sprite);
        background-repeat: no-repeat;
        background-size: 710px auto;
        background-position: -34px -125px;
        pointer-events: none;
    }

    .journal-hero__sun {
        right: -6px;
        top: 4px;
        z-index: 1;
        width: 112px;
        height: 104px;
        background-image: var(--journal-sprite);
        background-repeat: no-repeat;
        background-size: 710px auto;
        background-position: -580px -48px;
        pointer-events: none;
    }

    .journal-media__body {
        position: relative;
        z-index: 4;
        margin-top: -28px;
        padding: 48px 0 34px;
        border-radius: 8px 8px 0 0;
        background: #f4f4f4;
    }

    .journal-media-container {
        max-width: none;
        width: auto;
        margin: 0;
        padding: 0 10px;
    }

    .journal-media-section {
        margin-bottom: 88px;
    }

    .journal-media-section__title {
        margin: 0 0 38px;
        color: #343333;
        text-align: center;
        font-size: 36px;
        line-height: 1.05;
        font-weight: 400;
    }

    .journal-slider {
        position: relative;
        margin: 0;
    }

    .journal-slider__swiper {
        overflow: visible;
    }

    .journal-slider__swiper .swiper-wrapper {
        display: flex;
        flex-direction: column;
        gap: 12px;
        height: auto !important;
        transform: none !important;
    }

    .journal-slider__slide {
        width: 100% !important;
        height: auto !important;
        margin-right: 0 !important;
    }

    .journal-slider__arrow {
        display: none !important;
    }

    .journal-card {
        display: flex;
        flex-direction: column;
        min-height: 318px;
        height: auto;
        overflow: hidden;
        border-radius: 8px;
        background: #ffffff;
        color: #343333;
        text-decoration: none;
        box-shadow: none;
        transform: none;
    }

    .journal-card:hover {
        transform: none;
        box-shadow: none;
    }

    .journal-card__image-wrap {
        position: relative;
        display: block;
        height: 164px;
        overflow: hidden;
        background: #e5e5e5;
    }

    .journal-card__image {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: none !important;
    }

    .journal-card__tag {
        position: absolute;
        left: 10px;
        top: 8px;
        display: inline-flex;
        align-items: center;
        min-height: 20px;
        padding: 3px 8px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.9);
        color: #343333;
        font-size: 10px;
        line-height: 1;
        text-transform: uppercase;
    }

    .journal-card__tag::before {
        content: "";
        display: block;
        width: 7px;
        height: 7px;
        margin-right: 5px;
        border-radius: 50%;
        background: #3ea74f;
    }

    .journal-card__content {
        display: flex;
        flex-direction: column;
        flex: 1;
        padding: 15px 20px 20px;
    }

    .journal-card__title {
        display: block;
        color: #343333;
        font-size: 16px;
        line-height: 1.16;
        font-weight: 400;
    }

    .journal-card__date {
        display: block;
        margin-top: auto;
        padding-top: 34px;
        color: rgba(52, 51, 51, 0.45);
        font-size: 12px;
        line-height: 1.2;
    }

    .journal-slider__more-wrap {
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }

    .journal-slider__more {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 200px;
        min-height: 40px;
        padding: 11px 28px;
        border-radius: 999px;
        background: #3ea74f;
        color: #ffffff;
        font-size: 11px;
        line-height: 1;
        font-weight: 700;
        text-transform: uppercase;
        text-decoration: none;
    }

    .journal-card--plain {
        min-height: 128px;
        border-radius: 6px;
    }

    .journal-card--plain .journal-card__content {
        padding: 18px 18px 16px;
    }

    .journal-card__plain-tag {
        display: block;
        margin-bottom: 16px;
        color: #343333;
        font-size: 24px;
        line-height: 1;
        font-weight: 600;
    }

    .journal-card--plain .journal-card__title {
        font-size: 13px;
        line-height: 1.22;
    }

    .journal-card--plain .journal-card__date {
        padding-top: 22px;
        font-size: 10px;
    }

    .journal-press {
        margin: -2px 0 0;
    }

    .journal-press .journal-media-container {
        padding: 0 10px;
    }

    .journal-press__box {
        position: relative;
        min-height: 556px;
        overflow: hidden;
        border-radius: 6px;
        background: #3ea74f;
        color: #ffffff;
    }

    .journal-press__content {
        position: relative;
        z-index: 4;
        width: auto;
        padding: 24px 20px 0;
        text-align: center;
    }

    .journal-press__title {
        margin: 0 0 22px;
        color: #ffffff;
        font-size: 26px;
        line-height: 0.95;
        font-weight: 400;
    }

    .journal-press__person strong {
        display: block;
        margin-bottom: 4px;
        color: #ffffff;
        font-size: 16px;
        line-height: 1.12;
        font-weight: 400;
    }

    .journal-press__person span {
        display: block;
        max-width: 220px;
        margin: 0 auto 4px;
        color: #ffffff;
        font-size: 11px;
        line-height: 1.18;
    }

    .journal-press__person a {
        color: #ffffff;
        font-size: 13px;
        line-height: 1.15;
        text-decoration: none;
    }

    .journal-press__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 28px;
        margin-top: 12px;
        padding: 8px 18px;
        border-radius: 999px;
        background: #ff7a22;
        color: #ffffff;
        font-size: 8px;
        line-height: 1;
        font-weight: 700;
        text-transform: uppercase;
        text-decoration: none;
    }

    .journal-press__photo {
        position: absolute;
        left: 50%;
        bottom: -34px;
        z-index: 2;
        width: 252px;
        height: 342px;
        overflow: hidden;
        transform: translateX(-50%) rotate(-8deg);
        transform-origin: center center;
    }

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

    .journal-press__decor {
        position: absolute;
        left: 50%;
        bottom: 164px;
        z-index: 1;
        width: 220px;
        height: 130px;
        background: #ffffff;
        transform: translateX(-50%) rotate(-8deg);
        pointer-events: none;
    }
}
/* Первый экран /journal/ по Figma */
.journal-media .journal-hero {
    position: relative;
    min-height: 520px;
    background-color: #3EA74F;
    background-image: url("../img/journal/journal-hero-desktop.svg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 1440px 520px;
    color: #ffffff;
    overflow: hidden;
}

.journal-media .journal-hero__inner {
    position: relative;
    max-width: none;
    width: 100%;
    min-height: 520px;
    margin: 0;
    padding: 0;
}

.journal-media .journal-hero__breadcrumbs,
.journal-media .journal-hero__title,
.journal-media .journal-hero__text,
.journal-media .journal-hero__flower,
.journal-media .journal-hero__sun {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
    background: none;
}

.journal-media .journal-media__body {
    margin-top: 0;
    border-radius: 0;
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .journal-media .journal-hero {
        min-height: 380px;
        background-image: url("../img/journal/journal-hero-tablet-1024.svg");
        background-size: 1024px 380px;
    }

    .journal-media .journal-hero__inner {
        min-height: 380px;
    }

    .journal-media .journal-hero__breadcrumbs {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .journal-media .journal-hero {
        min-height: 380px;
        background-image: url("../img/journal/journal-hero-tablet-768.svg");
        background-size: 768px 380px;
    }

    .journal-media .journal-hero__inner {
        min-height: 380px;
    }

    .journal-media .journal-hero__breadcrumbs {
        display: none;
    }

    .journal-media .journal-media__body {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .journal-media .journal-hero {
        min-height: 420px;
        background-image: url("../img/journal/journal-hero-mobile.svg");
        background-size: 357px 420px;
        background-position: center top;
    }

    .journal-media .journal-hero__inner {
        min-height: 420px;
    }

    .journal-media .journal-hero__breadcrumbs {
        display: none;
    }

    .journal-media .journal-media__body {
        margin-top: 0;
    }
/* Fix первого экрана /journal/ */
.journal-media .journal-hero__flower,
.journal-media .journal-hero__sun {
    display: block;
    position: absolute;
    overflow: visible;
    clip: auto;
    clip-path: none;
    opacity: 1;
    visibility: visible;
}

.journal-media .journal-hero__title {
    overflow: visible;
    clip: auto;
    clip-path: none;
}

.journal-media .journal-hero__title-text {
    display: inline-block;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

@media (max-width: 767px) {
    .journal-media .journal-hero {
        min-height: 420px;
        background: #3ea74f;
        overflow: hidden;
    }

    .journal-media .journal-hero__inner {
        min-height: 420px;
        padding: 14px 10px 36px;
    }

    .journal-media .journal-hero__title {
        position: relative;
        z-index: 3;
        display: block;
        margin: 196px auto 0;
        padding: 0;
        color: #ffffff;
        text-align: center;
        font-size: 0;
        line-height: 0;
        white-space: nowrap;
    }

    .journal-media .journal-hero__title-text {
        font-size: 68px;
        line-height: 0.82;
        white-space: nowrap;
    }

    .journal-media .journal-hero__text {
        position: relative;
        z-index: 3;
        max-width: 310px;
        margin: 32px auto 0;
        color: #ffffff;
        text-align: center;
        font-size: 16px;
        line-height: 1.05;
        font-weight: 400;
    }

    .journal-media .journal-hero__flower {
        left: 18px;
        top: 254px;
        z-index: 1;
        width: 82px;
        height: 118px;
        background-image: var(--journal-sprite);
        background-repeat: no-repeat;
        background-size: 710px auto;
        background-position: -34px -125px;
        pointer-events: none;
    }

    .journal-media .journal-hero__sun {
        right: -6px;
        top: 4px;
        z-index: 1;
        width: 112px;
        height: 104px;
        background-image: var(--journal-sprite);
        background-repeat: no-repeat;
        background-size: 710px auto;
        background-position: -580px -48px;
        pointer-events: none;
    }
}
}
/* Первый экран /journal/ */
.journal-media .journal-hero {
    position: relative !important;
    min-height: 520px !important;
    background: #3ea74f !important;
    color: #ffffff !important;
    overflow: hidden !important;
}

.journal-media .journal-hero__inner {
    position: relative !important;
    max-width: 1280px !important;
    min-height: 520px !important;
    margin: 0 auto !important;
    padding: 30px 0 72px !important;
}

.journal-media .journal-hero__breadcrumbs {
    position: relative !important;
    z-index: 3 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 0 65px !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.journal-media .journal-hero__breadcrumbs a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
}

.journal-media .journal-hero__breadcrumbs a:hover {
    color: #ffffff !important;
}

.journal-media .journal-hero__title {
    position: relative !important;
    z-index: 3 !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    margin: 58px auto 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    clip-path: none !important;
    white-space: normal !important;
    color: #ffffff !important;
    text-align: center !important;
    font-size: 132px !important;
    line-height: 0.82 !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.journal-media .journal-hero__title-text {
    display: inline-block !important;
    color: inherit !important;
    font: inherit !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;
    text-transform: inherit !important;
    white-space: nowrap !important;
}

.journal-media .journal-hero__text {
    position: relative !important;
    z-index: 3 !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 500px !important;
    margin: 58px auto 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    clip-path: none !important;
    white-space: normal !important;
    color: #ffffff !important;
    text-align: center !important;
    font-size: 18px !important;
    line-height: 1.15 !important;
    font-weight: 400 !important;
}

.journal-media .journal-hero__flower,
.journal-media .journal-hero__sun {
    position: absolute !important;
    z-index: 1 !important;
    display: block !important;
    overflow: visible !important;
    clip: auto !important;
    clip-path: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    pointer-events: none !important;
}

.journal-media .journal-hero__flower {
    left: 40px !important;
    top: 185px !important;
    width: 150px !important;
    height: 210px !important;
    background-image: url("../img/journal/hero-flower.svg") !important;
}

.journal-media .journal-hero__sun {
    right: 30px !important;
    top: 85px !important;
    width: 190px !important;
    height: 170px !important;
    background-image: url("../img/journal/hero-sun.svg") !important;
}

.journal-media .journal-media__body {
    margin-top: -18px !important;
    border-radius: 8px 8px 0 0 !important;
}

/* 1024 */
@media (min-width: 1024px) and (max-width: 1279px) {
    .journal-media .journal-hero {
        min-height: 380px !important;
    }

    .journal-media .journal-hero__inner {
        max-width: 944px !important;
        min-height: 380px !important;
        padding: 24px 0 54px !important;
    }

    .journal-media .journal-hero__breadcrumbs {
        display: none !important;
    }

    .journal-media .journal-hero__title {
        margin-top: 154px !important;
        font-size: 88px !important;
        line-height: 0.82 !important;
    }

    .journal-media .journal-hero__text {
        max-width: 440px !important;
        margin-top: 34px !important;
        font-size: 18px !important;
        line-height: 1.1 !important;
    }

    .journal-media .journal-hero__flower {
        left: 38px !important;
        top: 128px !important;
        width: 112px !important;
        height: 156px !important;
    }

    .journal-media .journal-hero__sun {
        right: 34px !important;
        top: 52px !important;
        width: 142px !important;
        height: 128px !important;
    }

    .journal-media .journal-media__body {
        margin-top: 0 !important;
        border-radius: 0 !important;
    }
}

/* 768 */
@media (min-width: 768px) and (max-width: 1023px) {
    .journal-media .journal-hero {
        min-height: 380px !important;
    }

    .journal-media .journal-hero__inner {
        max-width: 708px !important;
        min-height: 380px !important;
        padding: 20px 0 48px !important;
    }

    .journal-media .journal-hero__breadcrumbs {
        display: none !important;
    }

    .journal-media .journal-hero__title {
        margin-top: 154px !important;
        font-size: 86px !important;
        line-height: 0.82 !important;
    }

    .journal-media .journal-hero__text {
        max-width: 420px !important;
        margin-top: 34px !important;
        font-size: 18px !important;
        line-height: 1.1 !important;
    }

    .journal-media .journal-hero__flower {
        left: 28px !important;
        top: 122px !important;
        width: 96px !important;
        height: 136px !important;
    }

    .journal-media .journal-hero__sun {
        right: 24px !important;
        top: 50px !important;
        width: 122px !important;
        height: 112px !important;
    }

    .journal-media .journal-media__body {
        margin-top: 0 !important;
        border-radius: 0 !important;
    }
}

/* mobile */
@media (max-width: 767px) {
    .journal-media .journal-hero {
        min-height: 420px !important;
    }

    .journal-media .journal-hero__inner {
        max-width: 357px !important;
        min-height: 420px !important;
        padding: 0 10px 34px !important;
    }

    .journal-media .journal-hero__breadcrumbs {
        display: none !important;
    }

    .journal-media .journal-hero__title {
        margin-top: 229px !important;
        font-size: 68px !important;
        line-height: 0.82 !important;
    }

    .journal-media .journal-hero__text {
        max-width: 310px !important;
        margin-top: 26px !important;
        font-size: 16px !important;
        line-height: 1.05 !important;
    }

    .journal-media .journal-hero__flower {
        left: 18px !important;
        top: 254px !important;
        width: 82px !important;
        height: 118px !important;
    }

    .journal-media .journal-hero__sun {
        right: -6px !important;
        top: 4px !important;
        width: 112px !important;
        height: 104px !important;
    }

    .journal-media .journal-media__body {
        margin-top: 0 !important;
        border-radius: 0 !important;
    }
}

/* Первый экран /journal/: декоративные SVG из Figma */
.journal-media .journal-hero__flower,
.journal-media .journal-hero__sun {
    position: absolute !important;
    z-index: 1 !important;
    display: block !important;
    overflow: visible !important;
    clip: auto !important;
    clip-path: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    pointer-events: none !important;
}

.journal-media .journal-hero__flower {
    left: 60px !important;
    top: 235px !important;
    width: 180px !important;
    height: 240px !important;
    background-image: url("../img/journal/hero-flower.svg") !important;
}

.journal-media .journal-hero__sun {
    right: 40px !important;
    top: 60px !important;
    width: 240px !important;
    height: 240px !important;
    background-image: url("../img/journal/hero-sun.svg") !important;
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .journal-media .journal-hero__flower {
        left: 44px !important;
        top: 210px !important;
        width: 130px !important;
        height: 175px !important;
    }

    .journal-media .journal-hero__sun {
        right: 34px !important;
        top: 38px !important;
        width: 175px !important;
        height: 175px !important;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .journal-media .journal-hero__flower {
        left: 22px !important;
        top: 212px !important;
        width: 120px !important;
        height: 160px !important;
    }

    .journal-media .journal-hero__sun {
        right: 18px !important;
        top: 42px !important;
        width: 150px !important;
        height: 150px !important;
    }
}

@media (max-width: 767px) {
    .journal-media .journal-hero__flower {
        left: 4px !important;
        top: 252px !important;
        width: 105px !important;
        height: 140px !important;
    }

    .journal-media .journal-hero__sun {
        right: -12px !important;
        top: 4px !important;
        width: 120px !important;
        height: 120px !important;
    }
}
/* FIX: возвращаем заголовок "Медиацентр" на первом экране /journal/ */
.journal-media .journal-hero__title {
    position: relative !important;
    z-index: 5 !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    margin: 58px auto 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    clip-path: none !important;
    white-space: normal !important;
    border: 0 !important;
    background: none !important;
    color: #ffffff !important;
    text-align: center !important;
    font-size: 132px !important;
    line-height: 0.82 !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.journal-media .journal-hero__title-text {
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    clip: auto !important;
    clip-path: none !important;
    white-space: nowrap !important;
    color: inherit !important;
    font: inherit !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;
    text-transform: inherit !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Если в index.php заголовок пока без span, этот блок тоже сработает */
.journal-media .journal-hero__title:not(:has(.journal-hero__title-text)) {
    font-size: 132px !important;
    line-height: 0.82 !important;
}

/* 1024 */
@media (min-width: 1024px) and (max-width: 1279px) {
    .journal-media .journal-hero__title {
        margin-top: 154px !important;
        font-size: 88px !important;
        line-height: 0.82 !important;
    }

    .journal-media .journal-hero__title:not(:has(.journal-hero__title-text)) {
        font-size: 88px !important;
        line-height: 0.82 !important;
    }
}

/* 768 */
@media (min-width: 768px) and (max-width: 1023px) {
    .journal-media .journal-hero__title {
        margin-top: 154px !important;
        font-size: 86px !important;
        line-height: 0.82 !important;
    }

    .journal-media .journal-hero__title:not(:has(.journal-hero__title-text)) {
        font-size: 86px !important;
        line-height: 0.82 !important;
    }
}

/* mobile */
@media (max-width: 767px) {
    .journal-media .journal-hero__title {
        position: relative !important;
        z-index: 5 !important;
        display: block !important;
        margin: 229px auto 0 !important;
        padding: 0 !important;
        color: #ffffff !important;
        text-align: center !important;
        font-size: 68px !important;
        line-height: 0.82 !important;
        font-weight: 400 !important;
        white-space: nowrap !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .journal-media .journal-hero__title-text {
        font-size: 68px !important;
        line-height: 0.82 !important;
        white-space: nowrap !important;
    }

    .journal-media .journal-hero__title:not(:has(.journal-hero__title-text)) {
        font-size: 68px !important;
        line-height: 0.82 !important;
    }
}
.journal-media .journal-hero__title {
    position: relative !important;
    z-index: 3 !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    margin: 64px auto 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    color: #ffffff !important;
    text-align: center !important;
    font-size: 132px !important;
    line-height: 0.82 !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    text-indent: 0 !important;
    text-transform: none !important;
    background: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.journal-media .journal-hero__title-text {
    display: inline-block !important;
    color: inherit !important;
    font: inherit !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;
    text-transform: inherit !important;
    white-space: nowrap !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .journal-media .journal-hero__title {
        margin-top: 70px !important;
        font-size: 86px !important;
        line-height: 0.82 !important;
    }
}

@media (max-width: 767px) {
    .journal-media .journal-hero__title {
        margin-top: 62px !important;
        font-size: 68px !important;
        line-height: 0.82 !important;
    }
}
/* Заголовок первого экрана /journal/ как в Figma */
.journal-media .journal-hero__title {
    position: relative !important;
    z-index: 5 !important;
    display: block !important;
    width: 774px !important;
    height: 145px !important;
    margin: 64px auto 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    clip-path: none !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
    text-indent: -9999px !important;
    background: url("../img/journal/journal-hero-title-desktop.png") center / contain no-repeat !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.journal-media .journal-hero__title-text {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .journal-media .journal-hero__title {
        width: 585px !important;
        height: 104px !important;
        margin-top: 68px !important;
        background-image: url("../img/journal/journal-hero-title-tablet-1024.png") !important;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .journal-media .journal-hero__title {
        width: 457px !important;
        height: 86px !important;
        margin-top: 96px !important;
        background-image: url("../img/journal/journal-hero-title-tablet-768.png") !important;
    }
}

@media (max-width: 767px) {
    .journal-media .journal-hero__title {
        width: 327px !important;
        max-width: calc(100vw - 30px) !important;
        height: 64px !important;
        margin-top: 132px !important;
        background-image: url("../img/journal/journal-hero-title-mobile.png") !important;
    }
}
/* Mobile: убираем лишний белый декоративный квадрат в блоке "Контакты для СМИ" */

@media (max-width: 767px) {
    .journal-media-page .journal-press__decor,
    .journal-media-page .journal-press__decor::before,
    .journal-media-page .journal-press__decor::after {
        display: none !important;
        content: none !important;
    }
}
@media (max-width: 767px) {
    .journal-media-page .journal-press__box::before,
    .journal-media-page .journal-press__box::after {
        display: none !important;
        content: none !important;
    }
}
/* Mobile: убираем белую плашку в блоке "Контакты для СМИ" */

@media (max-width: 767px) {
    .journal-press__content,
    .journal-press__person {
        background: transparent !important;
        box-shadow: none !important;
        transform: none !important;
    }

    .journal-press__content::before,
    .journal-press__content::after,
    .journal-press__person::before,
    .journal-press__person::after,
    .journal-press__box::before,
    .journal-press__box::after,
    .journal-press__decor,
    .journal-press__decor::before,
    .journal-press__decor::after {
        display: none !important;
        content: none !important;
        background: transparent !important;
        box-shadow: none !important;
    }
}
.journal-news-page-section {
    padding-bottom: 80px;
}

.journal-news-page-section .journal-media-section__title {
    margin-bottom: 40px;
}

.journal-news-grid {
    width: 100%;
}

.journal-news-grid__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 28px;
}

.journal-news-grid__item {
    min-width: 0;
}

.journal-news-grid__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
    color: #262626;
    background: #ffffff;
    border-radius: 22px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.journal-news-grid__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .08);
}

.journal-news-grid__image {
    position: relative;
    display: block;
    width: 100%;
    height: 235px;
    overflow: hidden;
    border-radius: 22px 22px 0 0;
    background: #f0f0f0;
}

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

.journal-news-grid__image-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: #f0f0f0;
}

.journal-news-grid__tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    color: #2f9b4b;
    background: #ffffff;
}

.journal-news-grid__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 20px 22px 24px;
}

.journal-news-grid__title {
    display: block;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 500;
    color: #262626;
}

.journal-news-grid__preview {
    display: block;
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.45;
    color: #5d5d5d;
}

.journal-news-grid__date {
    display: block;
    margin-top: auto;
    padding-top: 20px;
    font-size: 15px;
    line-height: 1.2;
    color: #8c8c8c;
}

.journal-news-more {
    display: flex;
    justify-content: center;
    margin-top: 44px;
}

.journal-news-more__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    min-height: 48px;
    padding: 14px 30px;
    border: 0;
    border-radius: 999px;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    color: #ffffff;
    background: #f47b20;
    cursor: pointer;
    transition: background .2s ease, opacity .2s ease;
}

.journal-news-more__btn:hover {
    background: #e56f18;
}

.journal-news-more__btn:disabled {
    opacity: .65;
    cursor: default;
}

@media (max-width: 1023px) {
    .journal-news-grid__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .journal-news-grid__list {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .journal-news-grid__image {
        height: 220px;
    }

    .journal-news-grid__title {
        font-size: 18px;
    }
}