.page-follows .follows-page-shell {
    padding-top: 28px;
    padding-bottom: 40px;
}

.page-follows .follows-page-header {
    display: grid;
    gap: 6px;
    padding: 10px 12px 6px;
    margin-bottom: 14px;
}

.page-follows .follows-page-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    order: 1;
}

.page-follows .follows-page-title-row h1 {
    margin: 0;
}

.page-follows .follows-page-summary {
    margin: 0;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    order: 2;
}

.page-follows .follows-page-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.page-follows .follows-page-actions-note {
    margin: 0;
    color: #7f8a9b;
    font-size: 12px;
    line-height: 1.5;
    text-align: left;
    white-space: nowrap;
    order: 3;
}

.page-follows .follows-page-actions-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.page-follows .follows-page-section {
    padding: 14px 12px;
}

.page-follows .follows-page-notice {
    margin-bottom: 16px;
    padding: 14px 16px;
    border: 1px solid #d7e5f4;
    border-radius: 14px;
    background: #f7fbff;
    color: #46607b;
    font-size: 14px;
    line-height: 1.55;
}

.page-follows .follows-page-notice.is-success {
    border-color: #bde2da;
    background: #f2fbf8;
    color: #0f766e;
}

.page-follows .follows-page-notice.is-warn {
    border-color: #f4d9a2;
    background: #fff8e8;
    color: #9a6700;
}

.page-follows .follows-page-notice.is-error {
    border-color: #efc3c3;
    background: #fff4f4;
    color: #b42318;
}

.page-follows .follows-talent-grid {
    align-items: stretch;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    justify-content: stretch;
    gap: 10px;
}

.page-follows .follows-talent-grid .talent-card {
    max-width: none;
    min-width: 0;
}

.page-follows .follows-talent-grid .talent-avatar-cover {
    width: 120px;
    height: 120px;
    margin: 18px auto 0;
    aspect-ratio: 1 / 1;
    border: 4px solid #f1f5f9;
    border-radius: 999px;
    overflow: hidden;
    background: #f8fafc;
}

.page-follows .follows-talent-grid .talent-avatar-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-follows .follows-talent-grid .talent-card-body {
    padding-top: 14px;
    align-items: center;
    text-align: center;
}

.page-follows .follows-card-follow-toggle {
    min-height: 34px;
    padding: 0 16px;
    margin-top: 6px;
    border: 1px solid #0f9488;
    border-radius: 999px;
    background: #0f9488;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.page-follows .follows-card-follow-toggle:hover {
    transform: translateY(-1px);
    border-color: #0d7f75;
    background: #0d7f75;
}

.page-follows .follows-card-follow-toggle.is-following {
    border-color: #cfe3e0;
    background: #ffffff;
    color: #0f766e;
}

@media (max-width: 1440px) {
    .page-follows .follows-talent-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .page-follows .follows-talent-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.page-follows .follows-empty-state {
    display: grid;
    justify-items: start;
    gap: 12px;
    padding: 34px 12px 18px;
}

.page-follows .follows-empty-state h2 {
    margin: 0;
    font-size: 24px;
}

.page-follows .follows-empty-state p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .page-follows .follows-page-shell {
        padding-top: 18px;
        padding-bottom: 28px;
    }

    .page-follows .follows-page-header {
        display: flex;
        align-items: stretch;
        flex-direction: column;
        padding: 8px 8px 4px;
        margin-bottom: 8px;
    }

    .page-follows .follows-page-title-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .page-follows .follows-page-actions {
        align-items: stretch;
        justify-content: stretch;
    }

    .page-follows .follows-page-actions-note {
        width: 100%;
        max-width: none;
        white-space: normal;
    }

    .page-follows .follows-page-actions-row {
        justify-content: stretch;
    }

    .page-follows .follows-page-actions-row .btn {
        flex: 1 1 0;
        justify-content: center;
    }

    .page-follows .follows-page-section {
        padding: 14px;
    }

    .page-follows .follows-talent-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .page-follows .follows-talent-grid .talent-card {
        max-width: none;
    }

    .page-follows .follows-talent-grid .talent-avatar-cover {
        width: 112px;
        height: 112px;
        margin-top: 16px;
    }

    .page-follows .follows-card-follow-toggle {
        min-height: 30px;
        padding: 0 14px;
        font-size: 12px;
    }
}
