.admin-login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0 0%, #fafafa 100%);
}

.admin-login-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 35px 60px -40px rgba(0, 0, 0, 0.3);
    width: min(100%, 360px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.admin-login-card h1 {
    font-family: "Roboto Slab", serif;
    margin: 0;
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-login-card form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-login-card label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.admin-login-card input {
    padding: 0.85rem 1rem;
    border: 1px solid #d7d7d7;
    border-radius: 12px;
    font-size: 1rem;
}

.admin-login-card button {
    padding: 0.85rem 1rem;
    border: none;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.admin-login-card button:hover {
    transform: translateY(-2px);
    background: #000000;
}

.admin-dashboard {
    background: #f7f7f7;
    min-height: 100vh;
    margin: 0;
}

.admin-header {
    background: #ffffff;
    border-bottom: 1px solid #e2e2e2;
    padding: 1.25rem 0;
}

.admin-header-inner {
    width: min(100% - 2rem, 1100px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-header-left {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.admin-header h1 {
    margin: 0;
    font-family: "Roboto Slab", serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 1.4rem;
}

.admin-subnav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-subnav-link {
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: #f3f3f3;
    color: #555555;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.admin-subnav-link:hover {
    transform: translateY(-1px);
    background: #ededed;
}

.admin-subnav-link.is-active {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

.admin-logout {
    color: #555555;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    text-decoration: underline;
}

.admin-main {
    width: min(100% - 2rem, 1100px);
    margin: 2rem auto 4rem;
}

.admin-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.admin-tab-button {
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    border: 1px solid #d0d0d0;
    background: #f5f5f5;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.admin-tab-button:hover {
    transform: translateY(-1px);
    background: #ededed;
}

.admin-tab-button.is-active {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.admin-section {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 35px 65px -45px rgba(0, 0, 0, 0.35);
}

.admin-section[data-tab-content] {
    display: none;
}

.admin-section.is-active {
    display: block;
}

.admin-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.admin-section h2 {
    margin: 0 0 1.5rem;
    font-family: "Roboto Slab", serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 1.15rem;
}

.admin-section-subheader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.admin-grid-full {
    grid-column: 1 / -1;
}

.admin-excerpt-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.1rem 1.25rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(240, 165, 0, 0.12), rgba(17, 17, 17, 0.05));
    border: 1px solid rgba(17, 17, 17, 0.08);
}

.admin-excerpt-field span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6a5e28;
}

.admin-excerpt-field textarea {
    border-radius: 12px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: rgba(255, 255, 255, 0.7);
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
}

.admin-body-field {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 18px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 40px 80px -60px rgba(0, 0, 0, 0.25);
    padding: 1.25rem 1.5rem;
}

.admin-body-field span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #5a5a5a;
    margin-bottom: 0.4rem;
}

.admin-media-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-media-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 1px solid #dcdcdc;
    border-radius: 16px;
    background: #fafafa;
    max-width: 180px;
    box-shadow: 0 24px 45px -35px rgba(0, 0, 0, 0.35);
}

.admin-media-thumb {
    display: block;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 45px -40px rgba(0, 0, 0, 0.6);
}

.admin-media-thumb img {
    display: block;
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.admin-media-caption {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #666666;
}

.admin-grid-full {
    grid-column: 1 / -1;
}

.admin-section label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #666666;
}

.admin-section input,
.admin-section textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #d7d7d7;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #222222;
    resize: vertical;
}

.admin-repeatable {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.repeatable-row {
    position: relative;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    padding: 1.25rem;
    border: 1px solid #e7e7e7;
    border-radius: 16px;
}

.repeatable-remove {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #f2f2f2;
    color: #333333;
    font-size: 1.25rem;
    cursor: pointer;
}

.repeatable-remove:hover {
    background: #e0e0e0;
}

.admin-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    border: 1px solid #d0d0d0;
    background: #f9f9f9;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.admin-button:hover {
    transform: translateY(-2px);
    background: #f0f0f0;
    border-color: #c0c0c0;
}

.admin-button-primary {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

.admin-button-primary:hover {
    background: #000000;
    border-color: #000000;
}

.admin-button-secondary {
    align-self: flex-start;
}

.admin-actions {
    display: flex;
    justify-content: flex-end;
}

.admin-table-wrapper {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 45px -35px rgba(0, 0, 0, 0.25);
}

.admin-table th,
.admin-table td {
    padding: 0.9rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e8e8e8;
    font-size: 0.92rem;
}

.admin-table th {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    color: #666666;
}

.admin-table tbody tr:hover {
    background: #f9f9f9;
}

.admin-table th:last-child,
.admin-table td:last-child {
    text-align: right;
}

.admin-table-actions-header {
    width: 170px;
}

.admin-table-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
}

.admin-table-action {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: none;
    padding: 0;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #333333;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.admin-table-action svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.admin-table-action:hover {
    color: #000000;
    transform: translateY(-1px);
}

.admin-table-action.danger {
    color: #b03b3b;
}

.admin-table-action.danger:hover {
    color: #8c1f1f;
}

.admin-inline-form {
    display: inline;
}

.admin-table-muted {
    color: #999999;
    font-size: 0.85rem;
}

.admin-alert {
    border-radius: 16px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.admin-alert-success {
    background: #e9f6ef;
    color: #276738;
    border: 1px solid #b7dfc5;
}

.admin-alert-error {
    background: #fdecea;
    color: #9f2d27;
    border: 1px solid #f2b8b5;
}

.admin-alert ul {
    margin: 0;
    padding-left: 1.25rem;
}

.admin-alert li {
    margin-bottom: 0.5rem;
}

.admin-alert li:last-child {
    margin-bottom: 0;
}

code {
    background: #f4f4f4;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
}

@media (max-width: 680px) {
    .repeatable-row {
        grid-template-columns: 1fr;
    }
}

.admin-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.admin-page-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-page-card h3 {
    margin: 0;
    font-family: "Roboto Slab", serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 1rem;
}

.admin-current-images {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.admin-current-images-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #666666;
}

.admin-image-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    border: 1px solid #d0d0d0;
    background: #f9f9f9;
    font-size: 0.75rem;
    cursor: pointer;
}

.admin-image-chip input {
    margin: 0;
}

.admin-upload-label input[type="file"] {
    margin-top: 0.5rem;
}

.admin-field-label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #777777;
    margin-bottom: 0.55rem;
}

.admin-image-preview {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 18px;
    border: 1px dashed #d8d8d8;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(240, 240, 240, 0.85));
}

.admin-image-preview img {
    width: 200px;
    height: 140px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 35px 70px -55px rgba(0, 0, 0, 0.55);
}

.admin-image-preview-placeholder {
    font-size: 0.9rem;
    color: #7a7a7a;
}

.admin-image-preview-meta {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    min-width: 220px;
}

.admin-image-path {
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    color: #555555;
    word-break: break-all;
}

.admin-checkbox-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #444444;
    cursor: pointer;
}

.admin-checkbox-inline input {
    width: 16px;
    height: 16px;
    accent-color: #111111;
}

.admin-media-remove {
    align-self: flex-start;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: #ffe3ce;
    color: #8b4600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.admin-media-remove:hover {
    transform: translateY(-1px);
    background: #ffcfaa;
}

@media (max-width: 720px) {
    .admin-image-preview img {
        width: 100%;
        height: auto;
    }
}

.admin-cover-card {
    position: relative;
    width: clamp(180px, 24vw, 260px);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-radius: 24px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(245, 245, 245, 0.82));
    box-shadow: 0 30px 70px -55px rgba(0, 0, 0, 0.45);
    padding-bottom: 1rem;
}

.admin-cover-card.is-empty {
    border-style: dashed;
}

.admin-cover-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.admin-cover-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #ffffff;
}

.admin-cover-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8a8a8a;
    background: rgba(255, 255, 255, 0.7);
}

.admin-cover-change {
    position: absolute;
    inset: 0;
    border: none;
    background: linear-gradient(140deg, rgba(17, 17, 17, 0.72), rgba(17, 17, 17, 0.55));
    color: #ffffff;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.admin-cover-media:hover .admin-cover-change,
.admin-cover-media:focus-within .admin-cover-change,
.admin-cover-card.is-empty .admin-cover-change {
    opacity: 1;
    visibility: visible;
}

.admin-cover-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1rem;
}

.admin-cover-actions .admin-image-path {
    word-break: break-all;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}

.admin-cover-help {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8a8a8a;
}

.admin-editor-wrapper {
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(247, 247, 247, 0.88));
    border-radius: 24px;
    padding: 1.4rem;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 30px 70px -55px rgba(0, 0, 0, 0.45);
}

.admin-editor-wrapper label {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.admin-excerpt-input {
    width: 100%;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 18px;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(240, 165, 0, 0.16), rgba(17, 17, 17, 0.06));
    color: #1e1e1e;
    font-size: 0.95rem;
    line-height: 1.7;
    box-shadow: 0 28px 60px -48px rgba(0, 0, 0, 0.45);
}

.admin-media-grid--pending .admin-media-item {
    border-style: dashed;
    border-color: rgba(17, 17, 17, 0.2);
    background: rgba(249, 249, 249, 0.85);
}

.admin-branding-row {
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.admin-field-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1 1 260px;
}

.admin-field-group .admin-field-label,
.admin-logo-card > .admin-field-label {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6a6a6a;
}

.admin-logo-card {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex: 0 0 auto;
    min-width: clamp(160px, 24vw, 220px);
}

.admin-logo-preview {
    position: relative;
    width: clamp(140px, 18vw, 220px);
    aspect-ratio: 1;
    border-radius: 24px;
    overflow: hidden;
    border: 1px dashed rgba(17, 17, 17, 0.15);
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.85), rgba(245, 245, 245, 0.7));
    box-shadow: 0 30px 70px -55px rgba(0, 0, 0, 0.48);
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-logo-preview.is-empty {
    border-style: solid;
}

.admin-logo-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #ffffff;
}

.admin-logo-preview .admin-image-preview-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: #8a8a8a;
}

.admin-logo-trigger {
    position: absolute;
    inset: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 17, 17, 0.72);
    color: #ffffff;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    transform: scale(0.98);
}

.admin-logo-preview:hover .admin-logo-trigger,
.admin-logo-preview.is-empty .admin-logo-trigger,
.admin-logo-trigger:focus-visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.admin-logo-trigger:focus-visible {
    outline: 2px solid var(--accent-color, #f0a500);
    outline-offset: 4px;
}

.admin-logo-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.admin-logo-help {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8a8a8a;
}

@media (max-width: 640px) {
    .admin-branding-row {
        align-items: stretch;
    }

    .admin-logo-card {
        width: 100%;
        min-width: unset;
    }

    .admin-logo-preview {
        width: 100%;
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
    }

    .admin-logo-meta {
        justify-content: center;
    }
}

.admin-gallery-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.admin-gallery-card {
    position: relative;
    width: clamp(140px, 18vw, 220px);
    border-radius: 22px;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.92), rgba(240, 240, 240, 0.82));
    box-shadow: 0 30px 70px -55px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding-bottom: 0.9rem;
}

.admin-gallery-card--pending::before {
    content: 'Pending';
    position: absolute;
    top: 0.7rem;
    left: 0.9rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.72);
    color: #ffffff;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    z-index: 2;
}

.admin-gallery-card--add {
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(17, 17, 17, 0.18);
    background: rgba(255, 255, 255, 0.65);
    color: #6a6a6a;
    cursor: pointer;
    gap: 0.4rem;
    padding-bottom: 0;
    transition: background 0.2s ease, border 0.2s ease, transform 0.2s ease;
}

.admin-gallery-card--add:hover,
.admin-gallery-card--add:focus-visible {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(17, 17, 17, 0.32);
    transform: translateY(-2px);
}

.admin-gallery-add-icon {
    font-size: 2.4rem;
    line-height: 1;
}

.admin-gallery-card--add span:last-child {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.admin-gallery-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.admin-gallery-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.admin-gallery-change {
    position: absolute;
    inset: 0;
    border: none;
    background: linear-gradient(140deg, rgba(17, 17, 17, 0.72), rgba(17, 17, 17, 0.55));
    color: #ffffff;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.admin-gallery-media:hover .admin-gallery-change,
.admin-gallery-media:focus-within .admin-gallery-change {
    opacity: 1;
    visibility: visible;
}

.admin-gallery-actions {
    display: flex;
    justify-content: center;
    padding: 0 0.75rem;
}

.admin-gallery-remove {
    border: 1px solid rgba(17, 17, 17, 0.14);
    background: rgba(255, 255, 255, 0.6);
    color: #7a2a2a;
    border-radius: 999px;
    padding: 0.35rem 1.1rem;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.admin-gallery-remove:hover,
.admin-gallery-remove:focus-visible {
    background: rgba(255, 235, 235, 0.9);
    transform: translateY(-1px);
}

.admin-video-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.admin-video-card {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.25rem;
    border-radius: 22px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.9), rgba(245, 245, 245, 0.78));
    box-shadow: 0 30px 70px -55px rgba(0, 0, 0, 0.4);
}

.admin-video-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.admin-video-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.admin-video-change,
.admin-video-remove {
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: rgba(255, 255, 255, 0.75);
    color: #222222;
    border-radius: 999px;
    padding: 0.45rem 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.admin-video-change:hover,
.admin-video-change:focus-visible,
.admin-video-remove:hover,
.admin-video-remove:focus-visible {
    background: rgba(240, 240, 240, 0.95);
    transform: translateY(-1px);
}

.admin-video-remove {
    color: #7a2a2a;
}

.admin-subheader-actions {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

