/* ============================================
   CMS Admin Panel - Main Styles
   ============================================ */

:root {
    --primary: #c9a227;
    --primary-dark: #a8861e;
    --primary-light: #dbb94a;
    --secondary: #64748b;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --dark: #0a1628;
    --navy: #0a1628;
    --navy-light: #132238;
    --gold: #c9a227;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0a1628;
    --white: #ffffff;
    --sidebar-width: 260px;
    --header-height: 64px;
    --radius: 10px;
    --radius-sm: 6px;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.06);
    --transition: all 0.2s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--gray-100);
    color: var(--gray-800);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ---- Layout ---- */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: var(--sidebar-width);
    background: var(--gray-900);
    color: var(--gray-300);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 100;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.admin-sidebar__brand {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.admin-sidebar__brand a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.admin-logo {
    display: block;
    max-width: 140px;
    width: 100%;
    height: auto;
}

.admin-logo--sm {
    max-width: 160px;
    margin: 0 auto;
}

.admin-sidebar__nav {
    flex: 1;
    padding: 1rem 0;
    overflow-y: auto;
}

.admin-sidebar__label {
    padding: 0.5rem 1.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
}

.admin-sidebar__link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1.5rem;
    color: var(--gray-400);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.admin-sidebar__link:hover,
.admin-sidebar__link.active {
    color: var(--white);
    background: rgba(201, 162, 39, 0.1);
    border-left-color: var(--gold);
}

.admin-sidebar__link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.admin-sidebar__group {
    margin-bottom: 0.25rem;
}

.admin-sidebar__link--toggle {
    width: 100%;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.admin-sidebar__chevron {
    width: 16px;
    height: 16px;
    margin-left: auto;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.admin-sidebar__group.is-open .admin-sidebar__chevron {
    transform: rotate(180deg);
}

.admin-sidebar__submenu {
    display: none;
    padding: 0.25rem 0 0.5rem;
}

.admin-sidebar__group.is-open .admin-sidebar__submenu {
    display: block;
}

.admin-sidebar__sublink {
    display: block;
    padding: 0.5rem 1.5rem 0.5rem 3.25rem;
    color: var(--gray-400);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.admin-sidebar__sublink:hover,
.admin-sidebar__sublink.active {
    color: var(--white);
    background: rgba(201, 162, 39, 0.08);
    border-left-color: var(--gold);
}

.admin-main {
    flex: 1;
    margin-left: var(--sidebar-width);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.admin-header {
    height: var(--header-height);
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: var(--shadow);
}

.admin-header__left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-header__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
}

.admin-header__right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-header__user {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.admin-header__avatar {
    width: 36px;
    height: 36px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.admin-header__menu {
    position: relative;
}

.admin-header__avatar--btn {
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.admin-header__avatar--btn:hover,
.admin-header__menu.is-open .admin-header__avatar--btn {
    box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.35);
}

.admin-header__dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 180px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: 0.375rem 0;
    z-index: 100;
}

.admin-header__menu:hover .admin-header__dropdown,
.admin-header__menu.is-open .admin-header__dropdown {
    display: block;
}

.admin-header__dropdown-name {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
    border-bottom: 1px solid var(--gray-200);
}

.admin-header__dropdown-link {
    display: block;
    width: 100%;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: var(--gray-700);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

.admin-header__dropdown-link:hover {
    background: var(--gray-50);
    color: var(--gray-900);
}

.admin-header__dropdown-link--button {
    color: var(--danger);
}

.admin-header__dropdown-link--button:hover {
    background: rgba(239, 68, 68, 0.08);
    color: var(--danger);
}

.admin-header__dropdown-form {
    margin: 0;
}

.admin-content {
    flex: 1;
    padding: 1.5rem;
}

.admin-footer {
    padding: 1rem 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-500);
    border-top: 1px solid var(--gray-200);
    background: var(--white);
}

/* ---- Guest Layout (Login) ---- */
.guest-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a1628 0%, #132238 50%, #1a3050 100%);
    padding: 1.5rem;
}

.guest-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 420px;
    padding: 2.5rem;
}

.guest-card__logo {
    text-align: center;
    margin-bottom: 2rem;
}

.guest-card__logo h1 {
    font-size: 1.25rem;
    color: var(--gray-800);
    font-weight: 600;
    margin-top: 1rem;
}

.guest-card__logo p {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* ---- Components ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    line-height: 1.4;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
}

.btn-secondary {
    background: var(--gray-200);
    color: var(--gray-700);
}

.btn-secondary:hover {
    background: var(--gray-300);
    color: var(--gray-800);
}

.btn-danger {
    background: var(--danger);
    color: var(--white);
}

.btn-danger:hover {
    background: #dc2626;
    color: var(--white);
}

.btn-sm {
    padding: 0.4rem 0.875rem;
    font-size: 0.8rem;
}

.btn-icon {
    padding: 0.5rem;
    width: 36px;
    height: 36px;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.card__header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.card__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
}

.card__body {
    padding: 1.5rem;
}

.card__footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
    border-radius: 0 0 var(--radius) var(--radius);
}

/* ---- Forms ---- */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.4rem;
}

.form-label .required {
    color: var(--danger);
}

.form-control {
    width: 100%;
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
    font-family: inherit;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--gray-800);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.form-control.is-invalid {
    border-color: var(--danger);
}

.form-control.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    padding-right: 2.5rem;
}

.form-error {
    color: var(--danger);
    font-size: 0.8rem;
    margin-top: 0.35rem;
}

.form-hint {
    color: var(--gray-500);
    font-size: 0.8rem;
    margin-top: 0.35rem;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

/* ---- Alerts ---- */
.alert {
    padding: 0.875rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-warning {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.alert-info {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

/* ---- Table ---- */
.table-wrapper {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.table th,
.table td {
    padding: 0.875rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.table th {
    font-weight: 600;
    color: var(--gray-600);
    background: var(--gray-50);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.table tbody tr:hover {
    background: var(--gray-50);
}

.table__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ---- Badges ---- */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 999px;
}

.badge-success {
    background: #d1fae5;
    color: #065f46;
}

.badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

.badge-info {
    background: #dbeafe;
    color: #1e40af;
}

/* ---- Stats Grid ---- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.stat-card__icon--primary {
    background: rgba(201, 162, 39, 0.12);
    color: var(--gold);
}

.stat-card__icon--success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.stat-card__icon--warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.stat-card__value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.2;
}

.stat-card__label {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ---- Page Header ---- */
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.page-header__title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gray-800);
}

.page-header__subtitle {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.15rem;
}

/* ---- Pagination ---- */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-top: 1.5rem;
    list-style: none;
    padding: 0;
}

.pagination li {
    list-style: none;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.5rem;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
    background: var(--white);
}

.pagination a:hover {
    background: var(--gray-100);
    color: var(--gold);
}

.pagination .active span {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.pagination .disabled span {
    color: var(--gray-400);
    cursor: not-allowed;
}

/* ---- Empty State ---- */
.empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--gray-500);
}

.empty-state__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

/* ---- Image Preview ---- */
.image-preview {
    margin-bottom: 0.75rem;
    max-width: 150px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    background: var(--gray-50);
}

.image-preview img {
    display: block;
    width: 100%;
    height: auto;
}

/* ---- Admin Avatar ---- */
.admin-avatar {
    width: 36px;
    height: 36px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    overflow: hidden;
    flex-shrink: 0;
}

.admin-avatar--lg {
    width: 72px;
    height: 72px;
    font-size: 1.5rem;
}

.admin-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.admin-header__avatar--has-image {
    padding: 0;
    overflow: hidden;
}

.admin-header__avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---- Profile Summary ---- */
.profile-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.profile-summary__name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
}

.profile-summary__email {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

/* ---- Sidebar Toggle (mobile) ---- */
.sidebar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--gray-600);
}

.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 90;
}

/* ---- Logout Button ---- */
.logout-form {
    display: inline;
}

.logout-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.875rem;
    color: var(--gray-600);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.logout-btn:hover {
    background: var(--gray-100);
    color: var(--danger);
}

/* ---- Delete Modal ---- */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 420px;
    padding: 1.5rem;
}

.modal__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.modal__text {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

/* ---- Settings ---- */
.settings-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.9fr);
    gap: 1.5rem;
    align-items: start;
}

.settings-page__controls {
    display: grid;
    gap: 1rem;
}

.settings-page__actions {
    margin-top: 0.25rem;
}

.settings-preview-card {
    position: sticky;
    top: 1.5rem;
}

.typography-group {
    overflow: hidden;
}

.typography-group__header {
    padding: 1.25rem 1.5rem 0;
}

.typography-group__title-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.typography-group__title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--gray-800);
}

.typography-group__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.625rem;
    border-radius: 999px;
    background: rgba(184, 154, 80, 0.12);
    color: var(--primary);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.typography-group__description {
    margin-top: 0.375rem;
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.typography-group .card__body {
    padding-top: 1rem;
}

.card__header--stack {
    flex-direction: column;
    align-items: flex-start;
}

.card__subtitle {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.375rem;
    line-height: 1.5;
}

.theme-preview {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 2rem;
    color: var(--gray-700);
    line-height: 1.7;
    font-family: var(--font-family-body);
    font-size: var(--font-size-body);
}

.theme-preview__eyebrow {
    font-family: var(--font-family-subheading);
    font-size: var(--font-size-subheading);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.theme-preview__title {
    font-family: var(--font-family-heading);
    font-size: var(--font-size-heading);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 0.875rem;
}

.theme-preview__title span {
    color: var(--primary);
    font-style: italic;
}

.theme-preview__subtitle {
    font-family: var(--font-family-subheading);
    font-size: var(--font-size-subheading);
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.theme-preview__text {
    font-family: var(--font-family-body);
    font-size: var(--font-size-body);
    margin-bottom: 1rem;
}

.theme-preview__text--muted {
    color: var(--gray-600);
}

.theme-preview__text:last-child {
    margin-bottom: 0;
}

@media (max-width: 1100px) {
    .settings-page__grid {
        grid-template-columns: 1fr;
    }

    .settings-preview-card {
        position: static;
    }
}

/* ---- SEO ---- */
.seo-table__url {
    color: var(--primary);
    font-weight: 500;
    word-break: break-all;
}

.seo-table__label {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.seo-table__title,
.seo-table__description {
    line-height: 1.45;
    color: var(--gray-700);
}

.seo-table__description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.seo-edit__url a {
    color: var(--primary);
    font-weight: 500;
    word-break: break-all;
}

.form-control--code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.8125rem;
    line-height: 1.55;
    min-height: 280px;
}
