.account-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
}

.account-content-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
    transition: transform .22s ease, box-shadow .22s ease, opacity .22s ease;
}

.account-content-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 58px rgba(15, 23, 42, .13);
}

.account-content-image {
    display: block;
    position: relative;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #eef6ff, #f8fbff);
    overflow: hidden;
}

.account-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.account-content-body {
    padding: 18px;
}

.account-content-body h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 800;
}

.account-content-body h3 a {
    color: #0f172a;
    text-decoration: none;
}

.account-content-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 13px;
}

.account-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.account-mini-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 38px;
    padding: 9px 14px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    color: #0f172a;
    background: #f1f5f9;
}

.account-mini-btn.primary {
    color: #fff;
    background: #2563eb;
}

.account-mini-btn.success {
    color: #fff;
    background: #16a34a;
}

.account-mini-btn.danger {
    color: #fff;
    background: #dc2626;
}

.account-empty-state {
    padding: 54px 24px;
    border: 1px dashed rgba(37, 99, 235, .25);
    border-radius: 24px;
    text-align: center;
    background: rgba(248, 251, 255, .86);
}

.account-empty-state i {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 24px;
    color: #2563eb;
    background: #eaf2ff;
    font-size: 28px;
}

.account-empty-state h3 {
    margin: 0 0 6px;
    font-weight: 900;
}

.account-empty-state p {
    margin: 0;
    color: #64748b;
}

.account-card-removing {
    opacity: 0;
    transform: scale(.96);
}

.account-comments-wrap {
    display: grid;
    gap: 18px;
}

.account-comment-card {
    padding: 22px;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .07);
}

.account-comment-card.pending {
    border-color: rgba(245, 158, 11, .35);
    background: linear-gradient(180deg, #fffaf0, #fff);
}

.account-comment-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.account-comment-top h3 {
    margin: 10px 0 6px;
    font-size: 20px;
    font-weight: 900;
}

.account-comment-top h3 a {
    color: #0f172a;
    text-decoration: none;
}

.account-comment-top small {
    color: #64748b;
}

.account-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.account-status-badge.approved {
    color: #166534;
    background: #dcfce7;
}

.account-status-badge.pending {
    color: #92400e;
    background: #fef3c7;
}

.account-comment-edit {
    display: grid;
    gap: 12px;
}

.account-comment-edit label {
    margin: 0;
    font-weight: 900;
}

.account-comment-edit textarea,
.account-comment-readonly {
    border-radius: 16px;
    border-color: #dbe5f1;
    background: #f8fafc;
}

.account-comment-readonly {
    padding: 16px;
    color: #334155;
    line-height: 1.75;
}

.account-inline-form {
    margin-top: 10px;
}

@media (max-width: 767px) {
    .account-content-grid {
        grid-template-columns: 1fr;
    }

    .account-comment-top {
        flex-direction: column;
    }
}
