/* ==========================================================================
   Home Page Styles (home.css)
   Hero / Editorial / Encyclopedia / Latest Posts
========================================================================== */

/* --- 1. Hero Featured Section --- */

/* Full-width container */
.hero-featured-wrapper {
    width: 100%;
    background-color: #ffffff;
    padding: 32px 16px 40px; 
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(45, 40, 56, 0.06);
}

/* Content wrapper */
.hero-featured {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
}

/* Flex container for order swapping */
.hero-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    width: 100%;
    animation: heroFadeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Text area (Order 1) */
.hero-body {
    order: 1; 
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 0 28px 0; 
}

.hero-title {
    margin: 0 0 16px 0; 
    font-size: clamp(28px, 5vw, 50px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.045em;
    color: var(--link-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.hero-title:hover {
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 3px;
}

.hero-desc {
    margin: 0;
    max-width: 820px;
    font-size: clamp(15px, 2vw, 18px);
    color: var(--text-dark);
    line-height: 1.72;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Image area (Order 2) */
.hero-img-wrap {
    order: 2; 
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: var(--bg-placeholder);
    border-radius: var(--radius-lg, 24px); 
}

.hero-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
    will-change: transform;
}

@media (hover: hover) {
    .hero-link:hover .hero-img,
    .hero-link:focus-visible .hero-img {
        transform: scale(1.035);
    }
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Hero Responsive Breakpoints --- */

/* Tablet */
@media (min-width: 768px) {
    .hero-featured-wrapper {
        padding: 40px 30px 50px;
    }
    .hero-img-wrap {
        aspect-ratio: 16 / 9;
    }
}

/* Desktop */
@media (min-width: 1200px) {
    .hero-featured-wrapper {
        padding: 40px 30px 50px;
        margin-bottom: 56px;
    }
    .hero-body {
        padding-bottom: 25px; 
    }
    .hero-title {
        margin-bottom: 15px; 
        -webkit-line-clamp: 1; 
    }
    .hero-link {
        padding: 0 30px;
    }
    .hero-img-wrap {
        aspect-ratio: 21 / 9;
    }
}

/* --- 2. Editorial Section (Horizontal Scroll) --- */

:root {
    --site-pad: 16px;
    /* Calculate dynamic bleed padding */
    --apple-bleed: max(var(--site-pad), calc((100vw - var(--max)) / 2 + var(--site-pad)));
}

@media (min-width: 768px) {
    :root { --site-pad: 30px; }
}

.editorial-section {
    width: 100%;
    margin-bottom: 40px;
    background: var(--bg-page);
    overflow: hidden; 
}

@media (min-width: 1200px) {
    .editorial-section {
        margin-bottom: 80px;
    }
}

.editorial-shell {
    width: 100%;
}

.editorial-head,
.editorial-panel-head {
    max-width: var(--max);
    margin: 0 auto 24px;
    padding: 0 var(--site-pad);
}

.editorial-head {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.editorial-tabs-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.editorial-tabs-row .editorial-tabs {
    flex: 1;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 8px;
}
.editorial-tabs-row .editorial-tabs::-webkit-scrollbar { display: none; }

.editorial-tabs-row .editorial-gallery-nav {
    flex-shrink: 0;
}



.editorial-panel-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.editorial-gallery-nav {
    display: none;
    gap: 12px;
}
@media (min-width: 768px) { .editorial-gallery-nav { display: flex; } }

.editorial-gallery-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-color, #e5e5e7);
    border-radius: 50%;
    background: #fff;
    color: var(--text-dark);
    cursor: pointer;
    transition: background .2s ease, color .2s ease, opacity .2s ease, transform .2s ease;
}

.editorial-gallery-btn .icon {
    width: 20px;
    height: 20px;
    background-color: currentColor;
    flex: 0 0 20px;
}

.editorial-gallery-btn.is-prev .icon-back {
    transform: translateX(0);
}

.editorial-gallery-btn.is-next .icon-back {
    transform: scaleX(-1) translateX(0);
}

.editorial-gallery-btn:hover:not([disabled]) {
    background: rgba(45, 40, 56, 0.1);
    transform: scale(1.03);
}

.editorial-gallery-btn[disabled] {
    opacity: .28;
    cursor: default;
}

.editorial-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.editorial-tabs::-webkit-scrollbar { display: none; }

/* Mobile TAB full-width bleed effect */
@media (max-width: 767px) {
    .editorial-tabs {
        margin-left: calc(-1 * var(--site-pad));
        margin-right: calc(-1 * var(--site-pad));
        padding-left: var(--site-pad);
        padding-right: var(--site-pad);
    }
    
    /* Fix missing right padding on some mobile browsers */
    .editorial-tabs::after {
        content: '';
        display: block;
        flex: 0 0 1px;
    }
}

.editorial-tab {
    flex: 0 0 auto;
    height: 40px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: rgba(45, 40, 56, 0.06);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .22s ease;
}
.editorial-tab.is-active {
    background: var(--theme-color);
    color: #fff;
    box-shadow: var(--shadow-chip);
}

.editorial-panels { position: relative; width: 100%; }
.editorial-panel { display: none; width: 100%; }
.editorial-panel.is-active { display: block; animation: editorialPanelFade .3s ease-out; }

@keyframes editorialPanelFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.editorial-panel-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.editorial-panel-meta {
    display: flex;
    align-items: baseline;
    gap: 14px;
    min-width: 0;
    flex-shrink: 0;
}

.editorial-panel-title {
    margin: 0;
    font-size: clamp(30px, 4.5vw, 52px);
    line-height: 1;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.04em;
    white-space: nowrap; 
}

.editorial-panel-more {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: color .2s ease;
}
.editorial-panel-more:hover { color: var(--theme-color); }

/* Navigation Buttons */
.editorial-gallery-nav {
    display: none;
    justify-content: flex-end;
    gap: 12px;
}
@media (min-width: 768px) { .editorial-gallery-nav { display: flex; } }

.editorial-gallery-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-color, #e5e5e7);
    border-radius: 50%;
    background: #fff;
    color: var(--text-dark);
    cursor: pointer;
    transition: background .2s ease, color .2s ease, opacity .2s ease, transform .2s ease;
}

.editorial-gallery-btn .icon {
    width: 20px;
    height: 20px;
    background-color: currentColor;
    flex: 0 0 20px;
}

.editorial-gallery-btn.is-prev .icon-back {
    transform: translateX(0);
}

/* Flip icon horizontally for 'next' */
.editorial-gallery-btn.is-next .icon-back {
    transform: scaleX(-1) translateX(0);
}

.editorial-gallery-btn:hover:not([disabled]) {
    background: rgba(45, 40, 56, 0.1);
    transform: scale(1.03);
}

.editorial-gallery-btn[disabled] {
    opacity: .28;
    cursor: default;
}

.editorial-gallery {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.editorial-gallery::-webkit-scrollbar { display: none; }

.editorial-gallery-track {
    display: flex;
    gap: 14px;
    padding-left: var(--apple-bleed);
}

.editorial-gallery-track::after {
    content: "";
    display: block;
    flex: 0 0 var(--apple-bleed);
    margin-left: -14px;
    pointer-events: none;
}

.editorial-gallery-card {
    flex: 0 0 76%;
    scroll-snap-align: start;
    scroll-margin-left: var(--apple-bleed);
}

.editorial-gallery-link {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-md);
    background: #fff;
    border: 1px solid rgba(45, 40, 56, 0.05);
    overflow: hidden;
    height: 100%;
    text-decoration: none;
    color: inherit;
    box-shadow: none !important;
    transition: border-color 0.3s ease;
}

.editorial-gallery-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bg-placeholder);
}

.editorial-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.25, 1);
}

@media (hover: hover) {
    .editorial-gallery-link:hover .editorial-gallery-image img {
        transform: scale(1.05);
    }
    .editorial-gallery-link:hover {
        border-color: rgba(45, 40, 56, 0.15);
    }
}

.editorial-gallery-body {
    padding: 18px 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.editorial-gallery-card-title {
    margin: 0;
    color: var(--link-color);
    font-size: 19px;
    line-height: 1.25;
    font-weight: 700;
}

.editorial-gallery-card-title:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.editorial-gallery-card-desc {
    margin: 0;
    color: var(--text-dark);
    font-size: 13.5px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0.85;
}

@media (min-width: 768px) {
    .editorial-gallery-track { gap: 20px; }
    .editorial-gallery-card { flex: 0 0 327px; }
    .editorial-gallery-card-title { font-size: 21px; }
}

@media (min-width: 1200px) {
    .editorial-gallery-track { gap: 24px; }
    .editorial-gallery-card { flex: 0 0 327px; }
    .editorial-gallery-card-title { font-size: 22px; }
}

/* --- 3. Encyclopedia Section --- */

.encyclopedia-home-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.encyclopedia-home-cat {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 18px;
    border: 1px solid rgba(45, 40, 56, 0.05);
    box-shadow: none;
    transition: border-color 0.3s ease;
}

@media (min-width: 768px) {
    .encyclopedia-home-cat {
        margin-bottom: 24px;
    }
}

.encyclopedia-home-cat:hover {
    border-color: rgba(45, 40, 56, 0.12);
}

.encyclopedia-home-cat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    padding: 0 18px;
    background: rgba(45, 40, 56, 0.02);
    border-bottom: 1px solid rgba(45, 40, 56, 0.06);
}

.encyclopedia-home-cat-name {
    font-size: 16px;
    font-weight: 650;
    margin: 0;
    color: var(--text-dark);
    letter-spacing: -0.015em;
}

.encyclopedia-home-cat-more {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.encyclopedia-home-cat-more:hover {
    color: var(--theme-color);
}

.encyclopedia-home-entries {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
}

.encyclopedia-home-entries li {
    min-width: 0;
    border-bottom: 1px solid rgba(45, 40, 56, 0.06);
    border-right: 1px solid rgba(45, 40, 56, 0.06);
}

.encyclopedia-home-entries li:nth-child(2n) { border-right: none; }
.encyclopedia-home-entries li:nth-last-child(-n + 2) { border-bottom: none; }

@media (min-width: 768px) {
    .encyclopedia-home-entries { grid-template-columns: repeat(3, 1fr); }
    .encyclopedia-home-entries li {
        border-right: 1px solid rgba(45, 40, 56, 0.06);
        border-bottom: 1px solid rgba(45, 40, 56, 0.06);
    }
    .encyclopedia-home-entries li:nth-child(2n) { border-right: 1px solid rgba(45, 40, 56, 0.06); }
    .encyclopedia-home-entries li:nth-child(3n) { border-right: none; }
    .encyclopedia-home-entries li:nth-last-child(-n + 3) { border-bottom: none; }
}

.encyclopedia-home-entries li a {
    display: block;
    width: 100%;
    padding: 13px 15px;
    font-size: 14px;
    color: var(--link-color);
    text-decoration: none;
    line-height: 1.4;
    transition: all 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
}

.encyclopedia-home-entries li a:hover {
    background: rgba(76, 59, 113, 0.035);
    padding-left: 19px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (min-width: 1024px) {
    .encyclopedia-home-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        align-items: start;
    }
    .encyclopedia-home-cat { margin-bottom: 24px; }
    .encyclopedia-home-cat-header { min-height: 58px; padding: 0 20px; }
    .encyclopedia-home-cat-name { font-size: 18px; }
    .encyclopedia-home-entries li a { padding: 14px 16px; }
}

/* --- 4. Latest Posts Section --- */

.home-latest-section {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
}

.card-main-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

@media (hover: hover) {
    .card-main-link:hover .cover.cover-landscape img {
        transform: scale(1.05);
    }
}

.card-cat-label {
    display: inline-block;
    padding: 2px 8px;
    border-radius: var(--radius-pill);
    color: var(--text-muted);
    font-size: 11px;
    border: 1px solid rgba(45, 40, 56, 0.08);
    background: rgba(255, 255, 255, 0.55);
}

.card-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 10px;
}

.card-meta-row .stat-like {
    flex-shrink: 0;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
}

.card-meta-left {
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 0;
    overflow: hidden;
}

.card-time-ago {
    font-size: 11px;
    color: var(--text-light);
    flex-shrink: 0;
}

.card-meta-left .card-cat-label + .card-time-ago::before {
    content: '·';
    margin-right: 3px;
    color: var(--text-light);
}


/* ==========================================================================
 * 有害吗 - 首页超级入口大横幅
 * ========================================================================== */

.pf-promo-banner {
    margin: 4px auto 32px;
}

.pf-promo-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: 100%;
    padding: 24px 18px 22px;
    overflow: hidden;
    border: 1px solid rgba(45, 40, 56, 0.05);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: none;
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
}

.pf-promo-content {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.pf-promo-title {
    margin: 0 0 10px;
    color: var(--text-main);
    font-size: clamp(30px, 5vw, 54px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.045em;
}

.pf-promo-desc {
    margin: 0 0 18px;
    color: var(--text-normal);
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: -0.01em;
}

.pf-promo-form {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
}

.pf-promo-search {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 52px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.pf-promo-search:focus-within {
    background: #fff;
    border-color: var(--theme-color, #5C3FC4);
    box-shadow: 0 0 0 3px rgba(76, 59, 113, 0.08);
}

.pf-promo-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-muted);
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='7' stroke='%23000' stroke-width='2' fill='none'/%3E%3Cpath d='M20 20L16.5 16.5' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='7' stroke='%23000' stroke-width='2' fill='none'/%3E%3Cpath d='M20 20L16.5 16.5' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

.pf-promo-search input {
    width: 100%;
    height: 100%;
    min-width: 0;
    padding: 0 18px 0 52px;
    border: none;
    outline: none;
    background: transparent;
    color: var(--text-main);
    line-height: 1;
}

.pf-promo-search input::placeholder {
    color: var(--text-muted);
    opacity: 1;
}

@media (min-width: 768px) {
    .pf-promo-banner {
        margin: 6px auto 40px;
    }

    .pf-promo-inner {
        padding: 34px 28px 28px;
        border-radius: 28px;
    }

    .pf-promo-desc {
        font-size: 16px;
    }
}

@media (min-width: 1200px) {
    .pf-promo-banner {
        margin: 10px auto 48px;
    }

    .pf-promo-inner {
        padding: 42px 36px 34px;
        border-radius: 32px;
    }

    .pf-promo-title {
        font-size: clamp(42px, 4vw, 52px);
        line-height: 1.02;
    }

    .pf-promo-desc {
        font-size: 17px;
        line-height: 1.95;
    }
}


/* ==========================================================================
   Home Trust Section
========================================================================== */
.home-trust-wrap {
    padding: 40px 0 20px;
    background: var(--text-main);
}

.home-trust__inner {
    padding: 0;
}

.home-trust__head {
    max-width: 980px;
    margin-bottom: 20px;
}

.home-trust__title {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(30px, 5vw, 54px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.045em;
}

.home-trust__intro {
    margin: 0;
    max-width: 960px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: -0.01em;
}

.home-trust__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 22px;
}

.home-trust-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 22px 18px 20px;
    border: 1px solid rgba(45, 40, 56, 0.05);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: none;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
}

.home-trust-card__title {
    margin: 0 0 10px;
    color: var(--text-main);
    font-size: 22px;
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.home-trust-card__desc {
    margin: 0;
    color: var(--text-normal);
    font-size: 15px;
    line-height: 1.82;
    letter-spacing: -0.01em;
}

.home-trust__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.home-trust__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(45, 40, 56, 0.08);
    border-radius: 999px;
    background: rgba(45, 40, 56, 0.04);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease, color .22s ease;
}

.home-trust__btn:hover {
    background: rgba(45, 40, 56, 0.08);
    border-color: rgba(45, 40, 56, 0.12);
    transform: translateY(-1px);
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: #fff;
    box-shadow: var(--shadow-btn);
}

@media (min-width: 768px) {

    .home-trust__title {
        margin-bottom: 14px;
    }

    .home-trust__intro {
        font-size: 16px;
    }

    .home-trust__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
        margin-top: 24px;
    }

    .home-trust-card {
        padding: 24px 20px 22px;
    }

    .home-trust-card__title {
        font-size: 24px;
    }

    .home-trust-card__desc {
        font-size: 15px;
    }

    .home-trust__btn {
        min-height: 46px;
        padding: 0 20px;
        background: var(--theme-color);
        border-color: var(--theme-color);
        color: #fff;
    }
}

@media (min-width: 1200px) {

    .home-trust__head {
        margin-bottom: 24px;
    }

    .home-trust__title {
        font-size: clamp(42px, 4vw, 52px);
        line-height: 1.02;
    }

    .home-trust__intro {
        max-width: 1080px;
        font-size: 17px;
        line-height: 1.95;
    }

    .home-trust__grid {
        gap: 18px;
        margin-top: 28px;
    }

    .home-trust-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-4px) translateZ(0);
        border-color: rgba(45, 40, 56, 0.08);
        background: #fff;
    }

    .home-trust__meta {
        margin-top: 26px;
        padding-top: 22px;
    }

    .home-trust__actions {
        gap: 12px;
        margin-top: 20px;
    }
}