.manifest-split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 24px;
    align-items: stretch;
}

.manifest-split-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 236, 0.94));
    border: 1px solid rgba(33, 59, 34, 0.1);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(33, 59, 34, 0.08);
    padding: 24px;
}

.manifest-split-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.manifest-split-head h3 {
    margin: 0;
    font-size: clamp(1.3rem, 1.6vw, 1.8rem);
    font-weight: 700;
    color: #1e2b1e;
}

.manifest-split-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fff7df;
    color: #c28a14;
    font-size: 1.05rem;
}

.manifest-split-icon--star {
    background: #fff4d6;
    color: #d39b1e;
}

.manifest-split-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.manifest-list-item {
    display: grid;
    grid-template-columns: 78px 62px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
}

.manifest-list-thumb {
    display: block;
    width: 78px;
    height: 58px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(33, 59, 34, 0.12);
}

.manifest-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.manifest-list-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #2f6a3d;
    line-height: 1;
}

.manifest-list-date strong {
    font-size: 1.75rem;
    font-weight: 800;
}

.manifest-list-date span {
    margin-top: 4px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.manifest-list-copy h4 {
    margin: 0 0 4px;
    font-size: 0.67rem;
    line-height: 1.2;
    color: #243324;
}

.manifest-list-copy p {
    margin: 0;
    color: #4f5f4f;
    font-size: 0.88rem;
}

.manifest-list-status {
    text-align: right;
    color: #5b8d61;
    font-weight: 700;
    white-space: nowrap;
    font-size: 0.9rem;
}

.manifest-split-link {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2f6a3d;
    font-weight: 700;
    text-decoration: none;
}

.manifest-split-link:hover {
    color: #234f2d;
}

.latest-household-media {
    display: block;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow: 0 18px 38px rgba(33, 59, 34, 0.12);
}

.latest-household-media img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.latest-household-body h4 {
    margin: 0 0 14px;
    font-size: clamp(1.35rem, 1.9vw, 1.8rem);
    line-height: 1.2;
    color: #1f2b1f;
}

.latest-household-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.latest-household-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3d4d3d;
    font-size: 1rem;
}

.latest-household-meta-item i {
    width: 18px;
    text-align: center;
    color: #c28a14;
}

.latest-household-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 14px;
    text-decoration: none;
    background: linear-gradient(135deg, #3e7447, #2f5e38);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(47, 94, 56, 0.22);
}

.latest-household-btn:hover {
    color: #fff;
    background: linear-gradient(135deg, #35653d, #294f30);
}

@media (max-width: 980px) {
    .manifest-split-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .manifest-split-card {
        padding: 18px;
        border-radius: 22px;
    }

    .manifest-list-item {
        grid-template-columns: 64px 52px minmax(0, 1fr);
        align-items: start;
    }

    .manifest-list-status {
        grid-column: 2 / -1;
        text-align: left;
        margin-top: -2px;
    }

    .manifest-list-thumb {
        width: 64px;
        height: 52px;
        border-radius: 12px;
    }

    .manifest-list-date strong {
        font-size: 1.55rem;
    }

    .latest-household-media img {
        height: 220px;
    }

    .latest-household-body h4 {
        font-size: 1.35rem;
    }
}
