.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.writers-page {
    min-height: 70vh;
    padding: clamp(28px, 6vw, 64px) 0;
    background: #ffffff;
}

.writers-shell {
    max-width: 1040px;
}

.writers-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.writers-hero h1 {
    margin: 6px 0 8px;
    color: var(--primary);
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1;
    letter-spacing: 0;
}

.writers-hero p:not(.eyebrow) {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.55;
}

.writers-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(234, 216, 202, 0.9);
    background: #fffdf9;
}

.writers-search input {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(18, 55, 42, 0.14);
    border-radius: 999px;
    background: #ffffff;
    color: var(--text);
    font: inherit;
    outline: none;
}

.writers-search input:focus {
    border-color: rgba(255, 107, 26, 0.62);
    box-shadow: 0 0 0 4px rgba(255, 107, 26, 0.1);
}

.writers-search button,
.writers-search a,
.writer-action,
.writers-empty a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 950;
    line-height: 1;
    text-decoration: none;
}

.writers-search button {
    padding: 0 18px;
    border: 0;
    background: var(--accent);
    color: #ffffff;
    cursor: pointer;
}

.writers-search button:hover {
    background: var(--accent-strong);
}

.writers-search a {
    padding: 0 14px;
    border: 1px solid var(--line);
    background: #ffffff;
    color: var(--primary);
}

.writers-results-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 24px 0 8px;
}

.writers-results-head h2 {
    margin: 0;
    color: var(--primary);
    font-size: clamp(1.3rem, 3vw, 2rem);
}

.writers-results-head span {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 850;
}

.writers-list {
    border-top: 1px solid rgba(18, 55, 42, 0.1);
}

.writer-row {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(18, 55, 42, 0.1);
}

.writer-avatar {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    background: var(--plexo-green-pale);
    color: var(--primary);
    font-size: 1.15rem;
    font-weight: 950;
    text-decoration: none;
}

.writer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.writer-info {
    min-width: 0;
    display: grid;
    gap: 7px;
}

.writer-title-row h2 {
    margin: 0;
    color: var(--primary);
    font-size: clamp(1.1rem, 2.4vw, 1.45rem);
    line-height: 1.15;
}

.writer-title-row h2 a {
    color: inherit;
    text-decoration: none;
}

.writer-title-row h2 a:hover {
    color: var(--accent-strong);
}

.writer-title-row p {
    margin: 4px 0 0;
    color: var(--accent-strong);
    font-size: 0.86rem;
    font-weight: 900;
}

.writer-bio {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.5;
}

.writer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 900;
}

.writer-meta span {
    min-height: 26px;
    display: inline-flex;
    align-items: center;
    padding: 0 9px;
    border-radius: 999px;
    background: var(--plexo-green-pale);
}

.writer-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.writer-actions form {
    margin: 0;
}

.writer-action {
    min-width: 104px;
    padding: 0 15px;
    border: 1px solid transparent;
    font: inherit;
    font-size: 0.85rem;
    cursor: pointer;
}

.writer-action-primary {
    background: var(--accent);
    color: #ffffff;
}

.writer-action-primary:hover {
    background: var(--accent-strong);
}

.writer-action-muted {
    border-color: var(--line);
    background: #ffffff;
    color: var(--primary);
}

.writer-action-muted:hover {
    border-color: rgba(255, 107, 26, 0.42);
    color: var(--accent-strong);
}

.writers-empty {
    padding: 34px 0;
    border-top: 1px solid rgba(18, 55, 42, 0.1);
    color: var(--muted);
}

.writers-empty h2 {
    margin: 0 0 8px;
    color: var(--primary);
}

.writers-empty p {
    margin: 0 0 16px;
}

.writers-empty a {
    padding: 0 16px;
    background: var(--accent);
    color: #ffffff;
}

@media (max-width: 720px) {
    .writers-search {
        grid-template-columns: 1fr;
    }

    .writers-search button,
    .writers-search a {
        width: 100%;
    }

    .writer-row {
        grid-template-columns: 58px minmax(0, 1fr);
        align-items: start;
        gap: 12px;
    }

    .writer-avatar {
        width: 58px;
        height: 58px;
        font-size: 0.95rem;
    }

    .writer-actions {
        grid-column: 1 / -1;
        justify-content: flex-start;
        padding-left: 70px;
    }

    .writer-action {
        min-width: 0;
        min-height: 40px;
    }
}

@media (max-width: 420px) {
    .writers-page {
        padding-top: 24px;
    }

    .writers-results-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .writer-actions {
        padding-left: 0;
    }

    .writer-action {
        flex: 1 1 0;
    }
}

.avatar-img,
.avatar-fallback {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    object-fit: cover;
    font-size: 1.5rem;
    font-weight: 900;
}

.avatar-img.large,
.avatar-fallback.large {
    width: 150px;
    height: 150px;
}

.writer-profile {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
}

.book-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: 0 12px 32px rgba(16, 35, 63, 0.06);
}

/* =========================================================
   PERFIL ANTIGO / COMPATIBILIDADE
   ========================================================= */

.social-profile {
    padding-bottom: 24px;
}

.social-cover {
    min-height: 220px;
    background:
        linear-gradient(135deg, rgba(18, 55, 42, 0.92), rgba(255, 107, 26, 0.78)),
        url("../img/banners/banner-1.jpg") center/cover;
}

.social-profile-shell {
    margin-top: -82px;
}

.social-card {
    display: grid;
    grid-template-columns: 156px minmax(0, 1fr);
    gap: 24px;
    padding: 24px;
    border: 1px solid rgba(234, 216, 202, 0.92);
    border-radius: 24px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.social-avatar {
    width: 156px;
    height: 156px;
    display: grid;
    place-items: center;
    overflow: hidden;
    align-self: start;
    border: 6px solid #fffdf9;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--plexo-green), var(--plexo-orange));
    color: #ffffff;
    font-size: 3.2rem;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(18, 55, 42, 0.16);
}

.social-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-main {
    min-width: 0;
    display: grid;
    gap: 18px;
}

.social-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.social-title-row h1 {
    margin: 0;
    color: var(--primary);
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: 1;
}

.social-handle,
.social-bio,
.social-panel p,
.social-empty {
    color: var(--muted);
}

.social-handle {
    margin: 8px 0 0;
    font-weight: 800;
}

.social-bio {
    max-width: 780px;
    margin: 0;
    font-size: 1.02rem;
    font-weight: 650;
}

.social-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.social-actions form {
    margin: 0;
}

.social-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-badges span {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--plexo-green-pale);
    color: var(--primary);
    font-size: 0.84rem;
    font-weight: 900;
}

.social-badges span:first-child {
    background: var(--plexo-peach);
    color: var(--accent-strong);
}

.social-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}

.social-stats div {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #ffffff;
}

.social-stats dt {
    color: var(--primary);
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1;
}

.social-stats dd {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.social-tabs {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    overflow-x: auto;
}

.social-tabs a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--primary);
    font-weight: 900;
    white-space: nowrap;
}

.social-profile-content {
    padding-top: 16px;
}

.social-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
    gap: 22px;
    align-items: start;
}

.social-side {
    display: grid;
    gap: 18px;
}

.social-panel {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--surface);
    box-shadow: 0 12px 32px rgba(16, 35, 63, 0.06);
}

.social-panel h2 {
    margin: 0 0 10px;
    color: var(--primary);
}

.social-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.social-panel-head h2 {
    margin-bottom: 0;
}

.social-panel-head span {
    min-width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--plexo-peach);
    color: var(--accent-strong);
    font-weight: 900;
}

.social-books {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
}

.social-book {
    display: grid;
    grid-template-rows: 190px auto auto;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
}

.social-book img,
.social-book > span {
    width: 100%;
    height: 190px;
    border-radius: 12px;
    object-fit: cover;
    background: var(--plexo-green-pale);
}

.social-book > span {
    display: grid;
    place-items: center;
    color: var(--primary);
    font-size: 1.7rem;
    font-weight: 900;
}

.social-book strong {
    min-width: 0;
    overflow: hidden;
    color: var(--primary);
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.social-book small {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.social-empty {
    margin: 0;
    font-weight: 700;
}

.social-mini-meta {
    margin-top: 16px;
    padding: 14px;
    border-radius: 16px;
    background: #ffffff;
}

.social-mini-meta span,
.social-mini-meta strong {
    display: block;
}

.social-mini-meta span {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.social-mini-meta strong {
    margin-top: 4px;
    color: var(--primary);
}
/* =========================================================
   PERFIL PUBLICO / SOCIAL ATUAL — PLEXO
   ========================================================= */

.app-profile {
    padding: 0 0 56px;
    background:
        radial-gradient(circle at top right, rgba(255, 107, 26, 0.05), transparent 28%),
        linear-gradient(180deg, #fffdf9 0%, #f7f4ee 100%);
}

.app-profile-wrap {
    max-width: 980px;
}

.app-profile-head {
    position: relative;
    overflow: visible;
    display: block;
    padding: 24px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
}

/* Capa arredondada, centralizada e com margens */
.app-profile-cover {
    width: min(920px, calc(100% - 32px));
    height: clamp(126px, 25vw, 230px);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 18px;
    background:
        radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.72) 0 9%, transparent 10%),
        radial-gradient(circle at 78% 22%, rgba(255, 183, 3, 0.24) 0 14%, transparent 15%),
        linear-gradient(135deg, rgba(0, 184, 148, 0.28), rgba(255, 107, 26, 0.22) 48%, rgba(238, 246, 255, 0.96));
    background-position: center;
    background-size: cover;
    box-shadow: 0 12px 28px rgba(18, 55, 42, 0.08);
}

.app-profile-cover.has-image {
    background-position: center;
    background-size: cover;
}

.app-profile-cover::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(18, 55, 42, 0.02), rgba(18, 55, 42, 0.10));
}

/* Conteúdo abaixo da capa */
.app-profile-main {
    display: grid;
    justify-items: center;
    gap: 13px;
    max-width: 920px;
    margin-top: -66px;
    padding-bottom: 28px;
}

/* Avatar centralizado sobre a capa */
.app-profile-avatar {
    width: 136px;
    height: 136px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 5px solid #fffdf9;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--plexo-green), var(--plexo-orange));
    color: #ffffff;
    font-size: 3rem;
    font-weight: 900;
    box-shadow: 0 18px 36px rgba(18, 55, 42, 0.18);
    z-index: 2;
}

.app-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-profile-identity {
    display: grid;
    justify-items: center;
    gap: 5px;
}

.app-profile-name {
    margin: 0;
    color: var(--primary);
    font-size: 1.08rem;
    font-weight: 950;
    line-height: 1.1;
}

.app-profile-identity h1 {
    margin: 0;
    color: var(--plexo-ink);
    font-size: clamp(1.24rem, 4vw, 1.85rem);
    line-height: 1.05;
    font-weight: 950;
}

.app-profile-identity span {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--plexo-green-pale);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 950;
}

.app-profile-stats {
    width: min(520px, 100%);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 6px 0 0;
    padding: 12px 0;
    border-top: 1px solid rgba(234, 216, 202, 0.95);
    border-bottom: 1px solid rgba(234, 216, 202, 0.95);
}

.app-profile-stats div {
    padding: 4px 10px;
    border-right: 1px solid rgba(234, 216, 202, 0.95);
}

.app-profile-stats div:last-child {
    border-right: 0;
}

.app-profile-stats dt {
    color: var(--plexo-ink);
    font-size: 1.35rem;
    font-weight: 1000;
    line-height: 1;
}

.app-profile-stats dd {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 850;
}

.app-profile-actions {
    width: min(560px, 100%);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 4px;
}

.app-profile-actions form {
    margin: 0;
}

.app-action {
    width: 100%;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 12px;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 950;
    cursor: pointer;
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.app-action:hover {
    transform: translateY(-1px);
}

.app-action-primary {
    border: 1px solid var(--accent);
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(255, 107, 26, 0.16);
}

.app-action-muted {
    border: 1px solid rgba(234, 216, 202, 0.95);
    background: rgba(255, 255, 255, 0.82);
    color: var(--primary);
}

.app-profile-bio {
    max-width: 620px;
    margin: 4px 0 0;
    color: var(--text);
    font-size: 1rem;
    font-weight: 750;
    line-height: 1.55;
}

.app-share-status {
    min-height: 20px;
    margin: 0;
    color: var(--accent-strong);
    font-size: 0.84rem;
    font-weight: 850;
}

/* =========================================================
   TABS DO PERFIL
   ========================================================= */

.app-profile-tabs {
    position: sticky;
    top: 72px;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid rgba(234, 216, 202, 0.9);
    border-bottom: 1px solid rgba(234, 216, 202, 0.9);
    background: rgba(255, 253, 249, 0.96);
    backdrop-filter: blur(10px);
}

.app-profile-tabs button {
    min-height: 64px;
    display: grid;
    place-items: center;
    gap: 4px;
    border: 0;
    border-bottom: 3px solid transparent;
    background: transparent;
    color: var(--muted);
    font: inherit;
    font-size: 0.74rem;
    font-weight: 900;
    cursor: pointer;
}

.app-profile-tabs button.is-active {
    border-bottom-color: var(--accent);
    color: var(--primary);
}

.app-profile-tabs svg {
    width: 23px;
    height: 23px;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.app-profile-panels {
    padding-top: 18px;
}

.app-tab-panel {
    display: none;
}

.app-tab-panel.is-active {
    display: block;
}

.app-panel-head {
    display: grid;
    gap: 4px;
    margin-bottom: 14px;
    padding: 0 2px;
}

.app-panel-head h2 {
    margin: 0;
    color: var(--primary);
    font-size: 1.35rem;
    line-height: 1.15;
}

/* =========================================================
   FEED
   ========================================================= */

.profile-feed-empty,
.profile-about-box,
.profile-empty {
    border: 1px solid rgba(234, 216, 202, 0.95);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
}

.profile-feed-empty,
.profile-about-box {
    padding: 22px;
}

.profile-feed-list {
    display: grid;
    gap: 12px;
}

.profile-feed-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(234, 216, 202, 0.95);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
}

.profile-feed-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--plexo-green-pale);
    color: var(--primary);
}

.profile-feed-icon svg {
    width: 23px;
    height: 23px;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.profile-feed-icon-like,
.profile-feed-icon-favorite,
.profile-feed-icon-bookmark {
    background: var(--plexo-peach);
    color: var(--accent-strong);
}

.profile-feed-label {
    display: inline-flex;
    margin-bottom: 4px;
    color: var(--accent-strong);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.profile-feed-card p {
    margin: 0;
    color: var(--text);
    font-weight: 750;
    line-height: 1.45;
}

.profile-feed-card p a {
    color: var(--primary);
    font-weight: 950;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.profile-feed-card time {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 800;
}

.profile-feed-empty strong {
    display: block;
    color: var(--primary);
    font-size: 1.05rem;
}

.profile-feed-empty p,
.profile-about-box p {
    margin: 8px 0 0;
    color: var(--muted);
    font-weight: 700;
}

/* =========================================================
   LIVROS DO PERFIL
   ========================================================= */

.profile-book-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.profile-book-card {
    min-width: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(234, 216, 202, 0.95);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
}

.profile-book-cover {
    aspect-ratio: 3 / 4;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: var(--plexo-green-pale);
}

.profile-book-cover img,
.profile-book-cover span {
    width: 100%;
    height: 100%;
}

.profile-book-cover img {
    display: block;
    object-fit: cover;
}

.profile-book-cover span {
    display: grid;
    place-items: center;
    color: var(--primary);
    font-size: 1.6rem;
    font-weight: 950;
}

.profile-book-copy {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.profile-book-copy strong,
.profile-book-copy small,
.profile-book-copy span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-book-copy strong {
    color: var(--primary);
    line-height: 1.25;
}

.profile-book-copy small,
.profile-book-copy span {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 750;
}

.profile-book-actions {
    display: grid;
    gap: 8px;
}

.profile-book-actions form {
    margin: 0;
}

.profile-book-link,
.profile-book-like {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 0;
    border-radius: 10px;
    background: var(--plexo-green-pale);
    color: var(--primary);
    font: inherit;
    font-size: 0.84rem;
    font-weight: 950;
    cursor: pointer;
    text-decoration: none;
}

.profile-book-like {
    border: 1px solid rgba(18, 55, 42, 0.18);
    background: #ffffff;
}

.profile-book-like.is-active,
.profile-book-like:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #ffffff;
}

.profile-empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 18px;
    color: var(--muted);
    font-weight: 800;
}

/* =========================================================
   SOBRE / COMPATIBILIDADE
   ========================================================= */

.profile-about-box dl {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
}

.profile-about-box dl div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px;
    border-radius: 12px;
    background: #ffffff;
}

.profile-about-box dt {
    color: var(--muted);
    font-weight: 850;
}

.profile-about-box dd {
    margin: 0;
    color: var(--primary);
    font-weight: 950;
}

/* =========================================================
   RESPONSIVO
   ========================================================= */

@media (min-width: 720px) {
    .app-profile-main {
        margin-top: -78px;
    }

    .app-profile-avatar {
        width: 150px;
        height: 150px;
    }

    .profile-book-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (min-width: 1020px) {
    .profile-book-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .app-profile-head {
        padding-top: 18px;
    }

    .app-profile-cover {
        width: calc(100% - 32px);
        height: 150px;
        border-radius: 16px;
    }

    .app-profile-main {
        margin-top: -62px;
        padding-inline: 18px;
    }

    .app-profile-avatar {
        width: 124px;
        height: 124px;
        border-width: 4px;
    }
}

@media (max-width: 520px) {
    .app-profile {
        padding-bottom: 42px;
    }

    .app-profile-head {
        padding-top: 14px;
    }

    .app-profile-cover {
        width: calc(100% - 28px);
        height: 126px;
        border-radius: 15px;
    }

    .app-profile-actions {
        grid-template-columns: 1fr;
    }

    .app-profile-tabs {
        top: 72px;
        display: flex;
        overflow-x: auto;
    }

    .app-profile-tabs button {
        flex: 1 0 76px;
    }

    .profile-book-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
/* =========================================================
   RESPONSIVO
   ========================================================= */

@media (max-width: 760px) {
    .social-cover {
        min-height: 180px;
    }

    .social-profile-shell {
        margin-top: -64px;
    }

    .social-card,
    .social-content-grid {
        grid-template-columns: 1fr;
    }

    .social-card {
        padding: 18px;
    }

    .social-avatar {
        width: 128px;
        height: 128px;
        margin-top: -18px;
    }

    .social-title-row {
        flex-direction: column;
    }

    .social-actions,
    .social-actions form,
    .social-actions .btn {
        width: 100%;
    }

    .social-stats {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 720px) {
    .app-profile-main {
        margin-top: -78px;
    }

    .app-profile-avatar {
        width: 150px;
        height: 150px;
    }

    .profile-book-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (min-width: 1020px) {
    .profile-book-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .app-profile-cover {
        height: 150px;
    }

    .app-profile-main {
        margin-top: -62px;
        padding-inline: 18px;
    }

    .app-profile-avatar {
        width: 124px;
        height: 124px;
        border-width: 4px;
    }
}

@media (max-width: 520px) {
    .app-profile {
        padding-bottom: 42px;
    }

    .app-profile-cover {
        height: 126px;
    }

    .app-profile-actions {
        grid-template-columns: 1fr;
    }

    .app-profile-tabs {
        top: 72px;
        display: flex;
        overflow-x: auto;
    }

    .app-profile-tabs button {
        flex: 1 0 76px;
    }

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