/* =====================================================
   牛樟芝页面 - Banner
===================================================== */

.htnzz-hero,
.htnzz-hero * {
    box-sizing: border-box;
}

.htnzz-hero {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}


/* =====================================================
   PC / iPad Banner
===================================================== */

.htnzz-hero__desktop {
    display: block;
    width: 100%;
    height: clamp(360px, 31.25vw, 600px);
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.htnzz-hero__desktop .carousel-inner,
.htnzz-hero__desktop .carousel-item {
    width: 100%;
    height: 100%;
}

.htnzz-hero__pc-image {
    width: 100%;
    height: 100%;

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* 默认隐藏轮播左右箭头 */

.htnzz-hero__arrow {
    display: none;
}


/* =====================================================
   Mobile Banner
===================================================== */

.htnzz-hero__mobile {
    display: none;
}


/* =====================================================
   iPad
   769px - 1100px
===================================================== */

@media (min-width: 769px) and (max-width: 1100px) {

    .htnzz-hero__desktop {
        /*
         * 保持 PC Banner 的原始横向比例，
         * 不再使用固定 600px 高度
         */
        height: clamp(300px, 31.25vw, 345px);
    }

}


/* =====================================================
   Mobile
   <= 768px
===================================================== */

@media (max-width: 768px) {

    /*
     * 手机不再加载 PC Banner 布局
     */
    .htnzz-hero__desktop {
        display: none !important;
    }


    /*
     * 手机独立 Banner
     */
    .htnzz-hero__mobile {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
        overflow: hidden;
        background: #351600;
    }


    /*
     * 关键：
     * 不使用 background-size: cover，
     * 防止设计稿中的文字/牛樟芝被裁切。
     */
    .htnzz-hero__mobile-image {
        display: block;
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
    }

}


/* =========================================================
   牛樟芝发展历程
========================================================= */

.nzz-history-section,
.nzz-history-section * {
    box-sizing: border-box;
}


.nzz-history-section {
    position: relative;

    width: 100%;

    padding: 42px 0 60px;

    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(244, 230, 204, .22) 0,
            rgba(244, 230, 204, 0) 28%
        ),
        radial-gradient(
            circle at 7% 87%,
            rgba(244, 230, 204, .17) 0,
            rgba(244, 230, 204, 0) 23%
        ),
        #fff;

    overflow: hidden;
}


.nzz-history-container {
    width: 1200px;
    max-width: calc(100% - 40px);

    margin: 0 auto;
}


/* =========================================================
   标题
========================================================= */

.nzz-history-heading {
    text-align: center;

    margin-bottom: 54px;
}


.nzz-history-heading h2 {
    display: inline-block;

    margin: 0;

    color: #111;

    font-size: 31px;
    line-height: 1.35;

    font-weight: 700;

    letter-spacing: 1px;
}


.nzz-history-heading h2 span {
    position: relative;

    display: inline-block;

    margin-left: 3px;

    color: #ef6c23;
}


.nzz-history-heading h2 span::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -4px;

    height: 2px;

    background: #ef6c23;
}


/* =========================================================
   PC横向时间轴
========================================================= */

.nzz-history-desktop {
    position: relative;

    display: grid;

    grid-template-columns: repeat(11, minmax(0, 1fr));

    width: 100%;

    height: 205px;
}


/* 中央横线 */

.nzz-history-line {
    position: absolute;

    z-index: 1;

    left: -2%;
    right: 2%;

    top: 93px;

    height: 1px;

    background: #bdbdbd;
}


/* =========================================================
   每个节点
========================================================= */

.nzz-history-node {
    position: relative;

    z-index: 2;

    min-width: 0;
}


.nzz-history-node-content {
    position: absolute;

    left: 50%;

    width: 145px;

    transform: translateX(-50%);

    text-align: left;
}


/* 文字 */

.nzz-history-node p {
    margin: 0;

    color: #3e3e3e;

    font-size: 11px;
    line-height: 1.48;

    font-weight: 400;
}


/* 年份 */

.nzz-history-node strong {
    display: block;

    color: #ef6c23;

    font-size: 20px;
    line-height: 1;

    font-weight: 700;
}


/* =========================================================
   上排
========================================================= */

.node-top .nzz-history-node-content {
    bottom: 130px;
}


.node-top .nzz-history-node-content strong {
    margin-top: 6px;
}


/* 实心菱形 */

.node-top .nzz-history-diamond {
    background: #ef6c23;
    border: 1px solid #ef6c23;
}


/* =========================================================
   下排
========================================================= */

.node-bottom .nzz-history-node-content {
    top: 108px;
}


.node-bottom .nzz-history-node-content strong {
    margin-bottom: 7px;
}


/* 白底描边菱形 */

.node-bottom .nzz-history-diamond {
    background: #fff;
    border: 2px solid #ef6c23;
}


/* =========================================================
   菱形节点
========================================================= */

.nzz-history-diamond {
    position: absolute;

    z-index: 5;

    left: 10%;
    top: 87px;

    width: 10px;
    height: 10px;

    margin-left: -5px;

    transform: rotate(45deg);
}


/* =========================================================
   个别较长文字微调
========================================================= */

.nzz-history-node:nth-child(7) .nzz-history-node-content,
.nzz-history-node:nth-child(9) .nzz-history-node-content {
    width: 160px;
}


/* =========================================================
   移动端默认隐藏
========================================================= */

.nzz-history-mobile {
    display: none;
}
/* =========================================================
   iPad
========================================================= */

@media (min-width:769px) and (max-width:1100px) {

    .nzz-history-section {
        padding: 38px 0 52px;
    }


    .nzz-history-container {
        width: calc(100% - 42px);
        max-width: none;
    }


    .nzz-history-heading {
        margin-bottom: 45px;
    }


    .nzz-history-heading h2 {
        font-size: 27px;
    }


    .nzz-history-desktop {
        height: 195px;
    }


    .nzz-history-line {
        top: 89px;
    }


    .nzz-history-diamond {
        top: 83px;
    }


    .node-top .nzz-history-node-content {
        bottom: 123px;

        width: 105px;
    }


    .node-bottom .nzz-history-node-content {
        top: 103px;

        width: 105px;
    }


    .nzz-history-node p {
        font-size: 9px;
        line-height: 1.45;
    }


    .nzz-history-node strong {
        font-size: 17px;
    }

}
/* =========================================================
   Mobile
========================================================= */

@media (max-width:768px) {

    .nzz-history-section {
        padding: 28px 0 42px;

        background: #fff;
    }


    .nzz-history-container {
        width: calc(100% - 32px);
        max-width: none;

        margin: 0 auto;
    }


    /* =====================================================
       标题
    ===================================================== */

    .nzz-history-heading {
        text-align: left;

        margin: 0 0 28px 36px;
    }


    .nzz-history-heading h2 {
        font-size: 21px;
        line-height: 1.35;

        letter-spacing: 0;
    }


    .nzz-history-heading h2 span {
        margin-left: 2px;
    }


    .nzz-history-heading h2 span::after {
        bottom: -5px;

        height: 2px;
    }


    /* PC隐藏 */

    .nzz-history-desktop {
        display: none;
    }


    /* =====================================================
       手机纵向时间轴
    ===================================================== */

    .nzz-history-mobile {
        position: relative;

        display: block;

        width: 100%;

        padding-left: 47px;
    }


    /* 左侧竖线 */

    .nzz-history-mobile::before {
        content: "";

        position: absolute;

        left: 14px;

        top: 6px;
        bottom: 4px;

        width: 1px;

        background: #9f9f9f;
    }


    /* 节点 */

    .nzz-history-mobile-item {
        position: relative;

        min-height: 86px;

        padding: 0 0 15px;
    }


    .nzz-history-mobile-item:last-child {
        min-height: 0;

        padding-bottom: 0;
    }


    /* 菱形 */

    .nzz-history-mobile-item i {
        position: absolute;

        left: -37px;
        top: 5px;

        width: 10px;
        height: 10px;

        background: #ef6c23;

        transform: rotate(45deg);
    }


    /* 年份 */

    .nzz-history-mobile-item strong {
        display: block;

        margin: 0 0 14px;

        color: #ef6c23;

        font-size: 23px;
        line-height: 1;

        font-weight: 600;
    }


    /* 正文 */

    .nzz-history-mobile-item p {
        width: 100%;
        max-width: 305px;

        margin: 0;

        color: #313131;

        font-size: 14px;
        line-height: 1.55;

        font-weight: 400;
    }

}
/* =========================================================
   原宿主濒危 / 野生牛樟芝从市场消失
========================================================= */

.nzz-wild,
.nzz-wild * {
    box-sizing: border-box;
}


.nzz-wild {
    position: relative;

    width: 100%;

    padding: 72px 0 82px;

    background:
        radial-gradient(
            circle at 92% 16%,
            rgba(235, 214, 182, .18) 0,
            rgba(235, 214, 182, 0) 24%
        ),
        radial-gradient(
            circle at 5% 83%,
            rgba(235, 214, 182, .15) 0,
            rgba(235, 214, 182, 0) 22%
        ),
        #fff;

    overflow: hidden;
}


/* 全页统一1200宽 */

.nzz-wild .nzz-page-container {
    width: 1200px;
    max-width: calc(100% - 40px);

    margin: 0 auto;
}


/* =========================================================
   上半部分
========================================================= */

.nzz-wild-top {
    display: grid;

    grid-template-columns: 61% 39%;

    align-items: center;

    width: 100%;
}


/* =========================================================
   左侧两张图片
========================================================= */

.nzz-wild-gallery {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;

    padding-right: 48px;
}


.nzz-wild-gallery-item {
    height: 330px;

    overflow: hidden;
}


.nzz-wild-gallery-item img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   右侧文字
========================================================= */

.nzz-wild-content {
    padding-left: 10px;
}


/* 顶部橙线 */

.nzz-wild-orange-line {
    width: 132px;
    height: 4px;

    margin-bottom: 22px;

    background: #ef6c23;
}


/* 原宿主濒危 */

.nzz-wild-subtitle {
    margin: 0 0 3px;

    color: #111;

    font-size: 34px;
    line-height: 1.25;

    font-weight: 700;
}


/* 野生牛樟芝从市场消失 */

.nzz-wild-title {
    margin: 0 0 34px;

    color: #ef6c23;

    font-size: 31px;
    line-height: 1.3;

    font-weight: 700;
}


/* 正文 */

.nzz-wild-desc {
    max-width: 390px;

    color: #333;

    font-size: 15px;
    line-height: 1.85;

    font-weight: 400;
}


/* =========================================================
   下方米黄色区域
========================================================= */

.nzz-wild-price {
    display: grid;

    grid-template-columns: 31% 69%;

    width: 100%;

    margin-top: 25px;

    background: #fff0dc;
}


/* 左文字 */

.nzz-wild-price-text {
    display: flex;

    flex-direction: column;

    justify-content: center;

    min-height: 255px;

    padding: 35px 26px;
}


.nzz-wild-price-text h3 {
    margin: 0 0 6px;

    color: #555;

    font-size: 21px;
    line-height: 1.3;

    font-weight: 700;
}


.nzz-wild-price-text h4 {
    margin: 0 0 30px;

    color: #ef6c23;

    font-size: 20px;
    line-height: 1.45;

    font-weight: 700;
}


.nzz-wild-price-text p {
    margin: 0 0 12px;

    color: #333;

    font-size: 14px;
    line-height: 1.75;
}


.nzz-wild-price-text p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   右侧资料图
========================================================= */

.nzz-wild-price-image {
    padding: 20px 20px 20px 0;
}


.nzz-wild-price-image img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: cover;

    object-position: center;
}
/* =========================================================
   iPad
========================================================= */

@media (min-width: 769px) and (max-width: 1100px) {

    .nzz-wild {
        padding: 58px 0 68px;
    }


    .nzz-wild .nzz-page-container {
        width: calc(100% - 48px);
        max-width: none;
    }


    .nzz-wild-top {
        grid-template-columns: 57% 43%;
    }


    .nzz-wild-gallery {
        gap: 12px;

        padding-right: 28px;
    }


    .nzz-wild-gallery-item {
        height: 270px;
    }


    .nzz-wild-orange-line {
        width: 100px;

        margin-bottom: 17px;
    }


    .nzz-wild-subtitle {
        font-size: 28px;
    }


    .nzz-wild-title {
        margin-bottom: 22px;

        font-size: 25px;
    }


    .nzz-wild-desc {
        font-size: 13px;
        line-height: 1.7;
    }


    .nzz-wild-price-text {
        min-height: 220px;

        padding: 26px 20px;
    }


    .nzz-wild-price-text h3 {
        font-size: 18px;
    }


    .nzz-wild-price-text h4 {
        margin-bottom: 18px;

        font-size: 16px;
    }


    .nzz-wild-price-text p {
        font-size: 12px;
    }


    .nzz-wild-price-image img {
        height: 185px;
    }

}
/* =========================================================
   Mobile
========================================================= */

@media (max-width: 768px) {

    .nzz-wild {
        padding: 35px 0 45px;

        background: #fff;
    }


    .nzz-wild .nzz-page-container {
        width: calc(100% - 28px);
        max-width: none;

        margin: 0 auto;
    }


    /* =====================================================
       上半部分改成纵向
    ===================================================== */

    .nzz-wild-top {
        display: flex;

        flex-direction: column;

        width: 100%;
    }


    /*
     * 手机必须：
     * 文字在前
     * 图片在后
     */

    .nzz-wild-content {
        order: 1;

        width: 100%;

        padding: 0;
    }


    .nzz-wild-gallery {
        order: 2;

        width: 100%;

        margin-top: 20px;

        padding: 0;

        gap: 9px;

        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    /* =====================================================
       标题
    ===================================================== */

    .nzz-wild-orange-line {
        display: none;
    }


    .nzz-wild-subtitle {
        position: relative;

        display: table;

        margin: 0 auto 12px;

        color: #ef6c23;

        font-size: 22px;
        line-height: 1.3;

        text-align: center;
    }


    /* 手机标题下橙线 */

    .nzz-wild-subtitle::after {
        content: "";

        position: absolute;

        left: 50%;
        bottom: -7px;

        width: 86px;
        height: 2px;

        background: #ef6c23;

        transform: translateX(-50%);
    }


    .nzz-wild-title {
        margin: 20px 0 25px;

        color: #222;

        font-size: 21px;
        line-height: 1.4;

        text-align: center;
    }


    .nzz-wild-desc {
        width: 100%;
        max-width: none;

        font-size: 14px;
        line-height: 1.8;

        color: #333;
    }


    /* =====================================================
       两张图
    ===================================================== */

    .nzz-wild-gallery-item {
        width: 100%;
        height: 145px;
    }


    .nzz-wild-gallery-item img {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }


    /* =====================================================
       米黄色价格区域
    ===================================================== */

    .nzz-wild-price {
        display: flex;

        flex-direction: column;

        width: 100%;

        margin-top: 22px;

        background: #fff0dc;
    }


    .nzz-wild-price-text {
        min-height: 0;

        padding: 22px 15px 15px;
    }


    .nzz-wild-price-text h3 {
        margin-bottom: 4px;

        font-size: 19px;
    }


    .nzz-wild-price-text h4 {
        margin: 0 0 25px;

        font-size: 19px;
        line-height: 1.45;
    }


    .nzz-wild-price-text p {
        margin-bottom: 14px;

        font-size: 14px;
        line-height: 1.75;
    }


    /* =====================================================
       资料图
    ===================================================== */

    .nzz-wild-price-image {
        padding: 0 12px 15px;
    }


    .nzz-wild-price-image img {
        width: 100%;
        height: auto;

        object-fit: contain;
    }

}

/* =========================================================
   人工培育的发展困境
========================================================= */

.nzz-cultivation,
.nzz-cultivation * {
    box-sizing: border-box;
}

.nzz-cultivation {
    width: 100%;
    padding: 75px 0 85px;

    background:
        radial-gradient(
            circle at 92% 14%,
            rgba(238, 220, 190, .18) 0,
            rgba(238, 220, 190, 0) 27%
        ),
        #fff;

    overflow: hidden;
}

.nzz-cultivation .nzz-page-container {
    width: 1200px;
    max-width: calc(100% - 40px);

    margin: 0 auto;
}


/* =========================================================
   PC主结构
========================================================= */

.nzz-cultivation-layout {
    display: grid;

    grid-template-columns: minmax(0, 1.85fr) minmax(320px, 1fr);

    gap: 20px;

    align-items: stretch;
}


/* =========================================================
   左侧
========================================================= */

.nzz-cultivation-left {
    min-width: 0;

    padding-top: 2px;
}


/* 橙色短线 */

.nzz-cultivation-line {
    width: 135px;
    height: 4px;

    margin-bottom: 20px;

    background: #ef6c23;
}


/* 标题 */

.nzz-cultivation-title {
    margin: 0 0 28px;

    color: #111;

    font-size: 34px;
    line-height: 1.3;

    font-weight: 700;
}


/*
 * 如果后台标题是：
 * 人工培育的发展困境
 *
 * 你希望“发展困境”自动变橙色，
 * 后台纯文本没办法精确包span。
 *
 * 所以最稳的方法是后台直接写：
 * 人工培育的<span>发展困境</span>
 *
 * 如果不想后台写HTML，
 * 也可以后面再用JS处理。
 */

.nzz-cultivation-title span {
    color: #ef6c23;
}


/* 正文 */

.nzz-cultivation-desc {
    margin-bottom: 20px;

    color: #333;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   两组培养方式
========================================================= */

.nzz-culture-compare {
    width: 100%;
}


/* 一整行 */

.nzz-culture-row {
    display: grid;

    grid-template-columns: 180px minmax(0, 1fr);

    min-height: 116px;
}


/* 第一行浅橙 */

.nzz-culture-row--wood {
    background: #ffe0b7;
}


/* 第二行浅蓝 */

.nzz-culture-row--other {
    background: #dff1fb;
}


/* 左标题 */

.nzz-culture-row-title {
    display: flex;

    align-items: center;

    padding: 18px 20px;

    font-size: 19px;
    line-height: 1.45;

    font-weight: 700;
}


/* 第一行橙字 */

.nzz-culture-row--wood .nzz-culture-row-title {
    color: #ef6c23;
}


/* 第二行灰字 */

.nzz-culture-row--other .nzz-culture-row-title {
    color: #555;
}


/* =========================================================
   图标列表
========================================================= */

.nzz-culture-items {
    display: grid;

    grid-template-columns: repeat(6, minmax(0, 1fr));

    align-items: center;

    padding: 12px 12px 10px;
}


.nzz-culture-items--five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}


.nzz-culture-item {
    min-width: 0;

    text-align: center;
}


/* 圆形图片框 */

.nzz-culture-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 7px;

    border-radius: 50%;

    overflow: hidden;

    background: #fff;
}


.nzz-culture-icon img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* 名称 */

.nzz-culture-item span {
    display: block;

    color: #444;

    font-size: 12px;
    line-height: 1.3;

    white-space: nowrap;
}


/* =========================================================
   右侧大图
========================================================= */

.nzz-cultivation-right {
    min-width: 0;
}


.nzz-cultivation-main-image {
    position: relative;

    width: 100%;
    height: 100%;
    min-height: 372px;

    overflow: hidden;
}


.nzz-cultivation-main-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* 图片底部文字 */

.nzz-cultivation-main-image span {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 24px;

    z-index: 2;

    text-align: center;

    color: #fff;

    font-size: 23px;
    line-height: 1.2;

    font-weight: 700;

    text-shadow: 0 2px 5px rgba(0,0,0,.4);
}


/* 微弱底部暗层 */

.nzz-cultivation-main-image::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 100px;

    background: linear-gradient(
        to top,
        rgba(0,0,0,.28),
        rgba(0,0,0,0)
    );

    pointer-events: none;
}

/* =========================================================
   iPad
========================================================= */

@media (min-width:769px) and (max-width:1100px) {

    .nzz-cultivation {
        padding: 60px 0 70px;
    }

    .nzz-cultivation .nzz-page-container {
        width: calc(100% - 48px);
        max-width: none;
    }

    .nzz-cultivation-layout {
        grid-template-columns: minmax(0, 1.7fr) minmax(280px, .9fr);

        gap: 16px;
    }

    .nzz-cultivation-line {
        width: 105px;
    }

    .nzz-cultivation-title {
        margin-bottom: 20px;

        font-size: 28px;
    }

    .nzz-cultivation-desc {
        font-size: 13px;
    }

    .nzz-culture-row {
        grid-template-columns: 145px minmax(0, 1fr);
    }

    .nzz-culture-row-title {
        padding: 15px;

        font-size: 15px;
    }

    .nzz-culture-icon {
        width: 47px;
        height: 47px;
    }

    .nzz-culture-item span {
        font-size: 10px;
    }

    .nzz-cultivation-main-image {
        min-height: 330px;
    }

}

/* =========================================================
   Mobile
========================================================= */

@media (max-width:768px) {

    .nzz-cultivation {
        padding: 36px 0 45px;

        background: #fff;
    }


    .nzz-cultivation .nzz-page-container {
        width: calc(100% - 28px);
        max-width: none;

        margin: 0 auto;
    }


    /* =========================
       总结构
    ========================= */

    .nzz-cultivation-layout {
        display: flex;

        flex-direction: column;

        gap: 0;
    }


    /*
     * 为了让手机：
     *
     * 标题正文
     * 大图
     * 培养方式
     *
     * 需要使用contents把左侧拆开参与排序
     */

    .nzz-cultivation-left {
        display: contents;
    }


    .nzz-cultivation-line {
        display: none;
    }


    /* =====================================================
       标题
    ===================================================== */

    .nzz-cultivation-title {
        order: 1;

        position: relative;

        display: table;

        margin: 0 auto 27px;

        color: #333;

        font-size: 22px;
        line-height: 1.35;

        text-align: center;
    }


    .nzz-cultivation-title span {
        position: relative;

        color: #ef6c23;
    }


    .nzz-cultivation-title span::after {
        content: "";

        position: absolute;

        left: 0;
        right: 0;
        bottom: -7px;

        height: 2px;

        background: #ef6c23;
    }


    /* =====================================================
       正文
    ===================================================== */

    .nzz-cultivation-desc {
        order: 2;

        width: 100%;

        margin: 0 0 22px;

        color: #333;

        font-size: 14px;
        line-height: 1.75;
    }


    /* =====================================================
       大图
    ===================================================== */

    .nzz-cultivation-right {
        order: 3;

        width: 100%;
    }


    .nzz-cultivation-main-image {
        width: 100%;

        height: 345px;
        min-height: 0;
    }


    .nzz-cultivation-main-image span {
        top: 50px;
        bottom: auto;

        font-size: 20px;
    }


    /*
     * 手机设计图文字在图片上方，
     * 所以不需要底部黑渐变
     */

    .nzz-cultivation-main-image::after {
        display: none;
    }


    /* =====================================================
       两组培养方式
    ===================================================== */

    .nzz-culture-compare {
        order: 4;

        width: 100%;
    }


    .nzz-culture-row {
        display: block;

        min-height: 0;
    }


    /* 左侧标题改成顶部居中 */

    .nzz-culture-row-title {
        display: block;

        padding: 28px 10px 20px;

        text-align: center;

        font-size: 19px;
        line-height: 1.4;
    }


    /* =====================================================
       图标宫格
    ===================================================== */

    .nzz-culture-items,
    .nzz-culture-items--five {
        display: grid;

        grid-template-columns: repeat(3, minmax(0, 1fr));

        row-gap: 20px;
        column-gap: 8px;

        padding: 8px 12px 27px;
    }


    .nzz-culture-icon {
        width: 74px;
        height: 74px;

        margin-bottom: 8px;
    }


    .nzz-culture-item span {
        font-size: 13px;

        white-space: normal;
    }

}