/* ===========================
   Admin Panel Styles
   =========================== */

:root {
    --admin-primary: #1e3a5f;
    --admin-secondary: #2c5f8d;
    --admin-accent: #64b5f6;
    --admin-success: #27ae60;
    --admin-danger: #e74c3c;
    --admin-warning: #f39c12;
    --admin-info: #3498db;
    --admin-light: #ecf0f1;
    --admin-dark: #1e3a5f;
    --admin-border: #bdc3c7;
    --sidebar-width: 250px;
}

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

body {
    font-family: 'Noto Sans KR', sans-serif;
    background: #f5f6fa;
    color: #333;
}

/* ===========================
   Login Page
   =========================== */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--admin-primary), #42a5f5);
}

.login-container {
    width: 100%;
    max-width: 450px;
    padding: 2rem;
}

.login-box {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.login-header {
    background: linear-gradient(135deg, var(--admin-primary), var(--admin-secondary));
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.login-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.login-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.login-form {
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--admin-dark);
}

.form-group label i {
    margin-right: 0.5rem;
    color: var(--admin-accent);
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="email"],
.form-group input[type="url"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Noto Sans KR', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--admin-accent);
    box-shadow: 0 0 0 3px rgba(196, 155, 99, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input {
    margin-right: 0.5rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.btn-login {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--admin-accent), #42a5f5);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(100, 181, 246, 0.3);
}

.btn-login i {
    margin-right: 0.5rem;
}

.error-message {
    color: var(--admin-danger);
    font-size: 0.9rem;
    margin-top: 1rem;
    padding: 0.75rem;
    background: #fee;
    border-radius: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

.login-footer {
    padding: 1.5rem 2.5rem;
    background: #f8f9fa;
    text-align: center;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.login-footer i {
    margin-right: 0.3rem;
}

.back-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--admin-accent);
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}

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

/* Sidebar */
.admin-sidebar {
    width: var(--sidebar-width);
    background: linear-gradient(180deg, var(--admin-primary), var(--admin-secondary));
    color: white;
    position: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.sidebar-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

.sidebar-header p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.sidebar-nav {
    flex: 1;
    padding: 1rem 0;
    overflow-y: auto;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.nav-item.active {
    background: rgba(196, 155, 99, 0.2);
    border-left-color: var(--admin-accent);
    color: white;
}

.nav-item i {
    width: 24px;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-logout {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem;
    background: rgba(231, 76, 60, 0.2);
    color: white;
    border: 1px solid rgba(231, 76, 60, 0.5);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-family: 'Noto Sans KR', sans-serif;
}

.btn-logout:hover {
    background: rgba(231, 76, 60, 0.4);
}

.btn-logout i {
    margin-right: 0.5rem;
}

/* Main Content */
.admin-main {
    flex: 1;
    margin-left: var(--sidebar-width);
    background: #f5f6fa;
}

.admin-header {
    background: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.admin-header h1 {
    font-size: 1.8rem;
    color: var(--admin-dark);
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--admin-dark);
    font-weight: 500;
}

.admin-user i {
    font-size: 1.8rem;
    color: var(--admin-accent);
}

.admin-content {
    padding: 2rem;
}

/* ===========================
   Dashboard Components
   =========================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.stat-info h3 {
    font-size: 2rem;
    margin-bottom: 0.3rem;
    color: var(--admin-dark);
}

.stat-info p {
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* Section */
.section {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    color: var(--admin-dark);
    margin-bottom: 1.5rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.btn-link {
    color: var(--admin-accent);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--admin-primary);
}

.btn-link i {
    margin-left: 0.5rem;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.action-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.action-card:hover {
    transform: translateY(-5px);
    border-color: var(--admin-accent);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.action-card i {
    font-size: 3rem;
    color: var(--admin-accent);
    margin-bottom: 1rem;
}

.action-card h3 {
    color: var(--admin-dark);
    margin-bottom: 0.5rem;
}

.action-card p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* ===========================
   Table Styles
   =========================== */
.table-container {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table thead {
    background: #f8f9fa;
}

.data-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--admin-dark);
    border-bottom: 2px solid #e1e8ed;
}

.data-table td {
    padding: 1rem;
    border-bottom: 1px solid #e1e8ed;
    color: #555;
}

.data-table tbody tr {
    transition: all 0.2s ease;
}

.data-table tbody tr:hover {
    background: #f8f9fa;
}

.text-center {
    text-align: center;
}

.artwork-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.no-image {
    width: 60px;
    height: 60px;
    background: #e1e8ed;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #95a5a6;
    font-size: 1.5rem;
}

/* Action Buttons in Table */
.table-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-edit {
    background: #e8f5e9;
    color: var(--admin-success);
}

.btn-edit:hover {
    background: var(--admin-success);
    color: white;
}

.btn-delete {
    background: #ffebee;
    color: var(--admin-danger);
}

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

/* ===========================
   Actions Bar
   =========================== */
.actions-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.search-filter {
    display: flex;
    gap: 1rem;
    flex: 1;
    justify-content: flex-end;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #95a5a6;
}

.search-box input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 0.95rem;
}

.filter-select {
    padding: 0.75rem 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-danger {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Noto Sans KR', sans-serif;
}

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

.btn-primary:hover {
    background: #d4af78;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 155, 99, 0.3);
}

.btn-secondary {
    background: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

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

.btn-danger:hover {
    background: #c0392b;
}

/* ===========================
   Modal Styles
   =========================== */
.admin-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
    padding: 2rem;
}

.admin-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-modal-content {
    background: white;
    border-radius: 15px;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-small {
    max-width: 500px;
}

.admin-modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e1e8ed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.admin-modal-header h2 {
    color: var(--admin-dark);
    font-size: 1.5rem;
}

.modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    font-size: 1.8rem;
    color: #95a5a6;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #e1e8ed;
    color: var(--admin-danger);
}

.modal-body {
    padding: 2rem;
}

/* Form Styles */
.admin-form {
    padding: 2rem;
}

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

.label-help {
    font-size: 0.85rem;
    color: #95a5a6;
    font-weight: 400;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid #e1e8ed;
    background: #f8f9fa;
}

/* Image Preview */
.image-preview {
    width: 100%;
    max-width: 400px;
    height: 250px;
    border: 2px dashed #e1e8ed;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-preview img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Warning Text */
.warning-text {
    font-size: 1.1rem;
    color: var(--admin-danger);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.warning-text i {
    font-size: 1.5rem;
}

.delete-target {
    font-weight: 600;
    color: var(--admin-dark);
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.warning-subtext {
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* ===========================
   Inquiries Styles
   =========================== */
.info-box {
    background: #e8f5e9;
    border-left: 4px solid var(--admin-success);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: start;
    gap: 1rem;
}

.info-box i {
    color: var(--admin-success);
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.inquiries-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.inquiry-card {
    background: white;
    border: 1px solid #e1e8ed;
    border-radius: 10px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.inquiry-card:hover {
    border-color: var(--admin-accent);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.inquiry-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.inquiry-info h3 {
    color: var(--admin-dark);
    margin-bottom: 0.3rem;
}

.inquiry-info p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.inquiry-time {
    font-size: 0.85rem;
    color: #95a5a6;
}

.inquiry-message {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.inquiry-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #95a5a6;
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-state h3 {
    color: #7f8c8d;
    margin-bottom: 0.5rem;
}

.inquiry-detail .detail-row {
    margin-bottom: 1.5rem;
}

.inquiry-detail label {
    display: block;
    font-weight: 600;
    color: var(--admin-dark);
    margin-bottom: 0.5rem;
}

.inquiry-detail p {
    color: #555;
}

.message-content {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    line-height: 1.6;
    white-space: pre-wrap;
}

/* ===========================
   Image Upload Styles
   =========================== */
.image-upload-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tab-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e1e8ed;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Noto Sans KR', sans-serif;
}

.tab-btn:hover {
    border-color: var(--admin-accent);
    background: #f8f9fa;
}

.tab-btn.active {
    border-color: var(--admin-accent);
    background: var(--admin-accent);
    color: white;
}

.image-tab {
    display: none;
}

.image-tab.active {
    display: block;
}

.file-upload-area {
    border: 2px dashed #e1e8ed;
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.file-upload-area:hover {
    border-color: var(--admin-accent);
    background: #fff;
}

.file-upload-area.dragover {
    border-color: var(--admin-accent);
    background: rgba(196, 155, 99, 0.1);
}

.upload-prompt i {
    font-size: 3rem;
    color: var(--admin-accent);
    margin-bottom: 1rem;
}

.upload-prompt p {
    font-size: 1.1rem;
    color: var(--admin-dark);
    margin-bottom: 0.5rem;
}

.file-info {
    font-size: 0.85rem;
    color: #95a5a6;
}

.upload-progress {
    margin-top: 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e1e8ed;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--admin-accent), #42a5f5);
    width: 0%;
    transition: width 0.3s ease;
    animation: progress-animation 1.5s ease-in-out infinite;
}

@keyframes progress-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.progress-text {
    text-align: center;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.btn-remove-image {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.5rem 1rem;
    background: rgba(231, 76, 60, 0.9);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    font-family: 'Noto Sans KR', sans-serif;
}

.btn-remove-image:hover {
    background: var(--admin-danger);
}

.image-preview {
    position: relative;
}

/* ===========================
   Artists Grid (Admin)
   =========================== */
.artists-grid-admin {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.artist-card-admin {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.artist-card-admin:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.artist-card-header {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--admin-primary), var(--admin-accent));
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-placeholder-admin {
    font-size: 4rem;
    color: white;
    font-weight: 700;
}

.artist-card-body {
    padding: 1.5rem;
}

.artist-card-title {
    font-size: 1.5rem;
    color: var(--admin-dark);
    margin-bottom: 0.3rem;
}

.artist-card-subtitle {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.artist-card-info {
    margin-bottom: 1rem;
}

.artist-card-info p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.artist-card-info i {
    width: 20px;
    color: var(--admin-accent);
    margin-right: 0.5rem;
}

.artist-card-actions {
    display: flex;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e1e8ed;
}

.artist-card-actions button {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Noto Sans KR', sans-serif;
}

.btn-edit-artist {
    background: #e8f5e9;
    color: var(--admin-success);
}

.btn-edit-artist:hover {
    background: var(--admin-success);
    color: white;
}

.btn-delete-artist {
    background: #ffebee;
    color: var(--admin-danger);
}

.btn-delete-artist:hover {
    background: var(--admin-danger);
    color: white;
}

.modal-large {
    max-width: 900px;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
    .admin-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .admin-sidebar.active {
        transform: translateX(0);
    }
    
    .admin-main {
        margin-left: 0;
    }
    
    .actions-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-filter {
        flex-direction: column;
    }
    
    .search-box {
        max-width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-actions {
        grid-template-columns: 1fr;
    }
    
    .artists-grid-admin {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   Banner Management Styles
   =========================== */
.banner-preview {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.banner-preview .loading,
.banner-preview .no-data {
    padding: 3rem;
    text-align: center;
    color: #7f8c8d;
}

.banner-preview-content {
    position: relative;
    min-height: 400px;
}

/* Banner form specific styles */
.form-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .banner-preview-content {
        min-height: 300px;
    }
    
    .banner-preview-content h2 {
        font-size: 1.8rem !important;
    }
    
    .banner-preview-content p {
        font-size: 1rem !important;
    }
}
