.plus-page {
    display: grid;
    gap: 10px;
}

.plus-shell {
    background: #fff;
    border: 1px solid #dbe3ef;
    border-radius: 12px;
    overflow: hidden;
}

.plus-top-strip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    border-bottom: 1px solid #edf1f7;
}

.plus-icon-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #d4dbe7;
    border-radius: 6px;
    background: #fff;
    color: #202d47;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.plus-followers {
    color: #1f2e4b;
    font-size: 0.95rem;
    white-space: nowrap;
}

.plus-top-cats {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #253452;
    font-size: 0.92rem;
    overflow-x: auto;
    white-space: nowrap;
}

.plus-brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px 10px;
    border-bottom: 1px solid #edf1f7;
}

.plus-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.plus-brand i {
    color: #b6c4db;
    font-size: 1rem;
}

.plus-head-title {
    margin: 0;
    color: #202e4b;
    font-size: 2rem;
    line-height: 1.25;
}

.plus-brand-arrow {
    color: #1d2b45;
    font-size: 1.2rem;
}

.plus-tabs {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    font-size: 1.45rem;
    color: #263552;
    padding: 10px 12px 0;
    overflow-x: auto;
}

.plus-tabs span {
    white-space: nowrap;
    padding-bottom: 10px;
}

.plus-tabs .active {
    color: #163e83;
    font-weight: 700;
    border-bottom: 2px solid #1f4c96;
}

.plus-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.plus-hero-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 220px;
    display: block;
}

.plus-hero-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.plus-hero-title {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    margin: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.15));
    color: #fff;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.6;
    padding: 16px 14px 12px;
}

.plus-list {
    background: #fff;
    border: 1px solid #dbe3ef;
    border-radius: 12px;
    overflow: hidden;
}

.plus-list-item {
    display: grid;
    grid-template-columns: 1fr 190px;
    gap: 10px;
    padding: 12px;
    border-bottom: 1px solid #edf1f8;
    text-decoration: none;
}

.plus-list-item:last-child {
    border-bottom: none;
}

.plus-list-content h3 {
    margin: 0 0 10px;
    color: #1d2d4b;
    line-height: 1.7;
    font-size: 1.45rem;
    font-weight: 700;
}

.plus-list-meta {
    color: #7b8ba5;
    font-size: 0.84rem;
}

.plus-list-thumb {
    border-radius: 8px;
    overflow: hidden;
    display: block;
    aspect-ratio: 16/9;
}

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

@media (max-width: 992px) {
    .plus-head-title {
        font-size: 1.35rem;
    }

    .plus-tabs {
        font-size: 1rem;
    }

    .plus-hero-title,
    .plus-list-content h3 {
        font-size: 1.05rem;
    }

    .plus-list-item {
        grid-template-columns: 1fr 130px;
    }
}

@media (max-width: 640px) {
    .plus-top-strip {
        flex-wrap: wrap;
    }

    .plus-followers {
        order: 3;
    }

    .plus-top-cats {
        width: 100%;
        order: 4;
        padding-top: 4px;
    }

    .plus-hero {
        grid-template-columns: 1fr;
    }

    .plus-list-item {
        grid-template-columns: 1fr;
    }
}
