/* Custom Stylesheet for Bella Sighting Tracker
 * Colors: White background, Dark text, Red accents (#e53935)
 */

/* 1. Design System & Custom Properties */
:root {
    --primary-red: #e53935;
    --primary-red-hover: #c62828;
    --primary-red-light: #ffebee;
    
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-light-soft: #f1f3f5;
    
    --text-dark: #212529;
    --text-muted: #6c757d;
    --text-light: #f8f9fa;
    
    --border-gray: #dee2e6;
    --border-gray-dark: #adb5bd;
    
    --success: #2e7d32;
    --success-bg: #e8f5e9;
    --success-border: #c8e6c9;
    
    --warning: #f57f17;
    --warning-bg: #fffde7;
    --warning-border: #fff9c4;
    
    --danger: #c62828;
    --danger-bg: #ffebee;
    --danger-border: #ffcdd2;

    --purple: #6a1b9a;
    --purple-bg: #f3e5f5;
    --purple-border: #e1bee7;
    
    --font-family: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
}

/* 2. Global Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 3. Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-dark);
}

h1 {
    font-size: 2.25rem;
    letter-spacing: -0.025em;
}

h2 {
    font-size: 1.5rem;
    letter-spacing: -0.015em;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: var(--primary-red-hover);
    text-decoration: underline;
}

/* 4. Common Layout Structures */
.main-container {
    width: 100%;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem;
}

@media (min-width: 640px) {
    .main-container {
        padding: 1.5rem;
    }
}
@media (min-width: 1024px) {
    .main-container {
        padding: 2rem;
    }
}

/* Top Navigation Bar */
.navbar {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-gray);
    padding: 0.75rem 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.navbar-container {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
    flex-shrink: 0;
}

.navbar-brand:hover {
    color: var(--text-dark);
    text-decoration: none;
}

.navbar-brand-text {
    white-space: nowrap;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}

.navbar-dot {
    background-color: var(--primary-red);
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    display: inline-block;
    animation: pulseDot 2s infinite ease-in-out;
}

.nav-greeting {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: none;
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

@media (min-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }
    .navbar-brand {
        font-size: 1.35rem;
        gap: 0.5rem;
        letter-spacing: 0.05em;
    }
    .navbar-nav {
        gap: 1rem;
    }
    .navbar-dot {
        width: 0.85rem;
        height: 0.85rem;
    }
}

/* Show greeting only on desktops to prevent wrapping on tablet/mobile */
@media (min-width: 1024px) {
    .nav-greeting {
        display: inline-block;
    }
}

/* Extra compact navbar layout for small mobile screens to prevent overflow */
@media (max-width: 480px) {
    .navbar {
        padding: 0.6rem 0.75rem;
    }
    .navbar-brand {
        font-size: 0.95rem;
        gap: 0.3rem;
    }
    .navbar-brand .badge {
        font-size: 0.55rem !important;
        padding: 0.15em 0.4em !important;
        margin-left: 0.25rem !important;
    }
    .navbar-nav {
        gap: 0.45rem;
    }
    .navbar-nav .btn {
        padding: 0.35rem 0.75rem;
        font-size: 0.75rem;
    }
    .navbar-nav a:not(.btn) {
        font-size: 0.75rem !important;
    }
}

@keyframes pulseDot {
    0%, 100% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}

/* Hero section (H1, H2, text on left / images on right) */
.hero-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.info-card, .images-card {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border: 1px solid var(--border-gray);
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

@media (min-width: 640px) {
    .info-card, .images-card {
        padding: 2rem;
    }
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.hero-desc {
    border-left: 4px solid var(--primary-red);
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.desc-highlight {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.4;
}

.desc-main {
    font-size: 1.05rem;
    color: var(--text-dark);
}

.desc-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Sighting Photos (Right Column) */
.card-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 1.25rem;
}

.hero-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    flex-grow: 1;
}

.image-box {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid var(--border-gray);
    cursor: pointer;
    aspect-ratio: 1 / 1;
    background-color: var(--bg-light);
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-out;
}

.image-box:hover img {
    transform: scale(1.06);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.25s ease;
}

.image-box:hover .image-overlay {
    opacity: 1;
}

.image-overlay span {
    color: var(--bg-white);
    font-weight: 700;
    font-size: 0.9rem;
    background-color: var(--primary-red);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

/* Centered Sighting & Phone Buttons */
.action-buttons-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;
}

@media (min-width: 640px) {
    .action-buttons-container {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.btn-giant {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    padding: 1.15rem 2.25rem;
    font-size: 1.25rem;
    border-radius: 9999px;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.04em;
    width: 100%;
    max-width: 20rem;
}

@media (min-width: 640px) {
    .btn-giant {
        width: auto;
        max-width: none;
    }
}

.btn-sighting {
    background-color: var(--primary-red);
    color: var(--bg-white);
    border-color: var(--primary-red);
    border-bottom: 4px solid var(--primary-red-hover);
}

.btn-sighting:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(229, 57, 53, 0.35);
}

.btn-sighting:active {
    transform: translateY(1px);
    border-bottom-width: 1px;
}

.btn-phone {
    background-color: var(--bg-white);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    border-bottom: 4px solid var(--primary-red-hover);
}

.btn-phone:hover {
    background-color: var(--primary-red);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(229, 57, 53, 0.2);
    text-decoration: none;
}

.btn-phone:active {
    transform: translateY(1px);
    border-bottom-width: 2px;
}

/* 5. Modals & Lightboxes */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
}

.modal-content {
    background-color: var(--bg-white);
    border-radius: 1rem;
    border-top: 8px solid var(--primary-red);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 42rem;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
    padding: 1.5rem;
    animation: modalSlideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (min-width: 640px) {
    .modal-content {
        padding: 2.25rem;
    }
}

@keyframes modalSlideUp {
    from { transform: translateY(15px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color 0.15s;
}

.close-btn:hover {
    color: var(--primary-red);
}

.hidden {
    display: none !important;
}

/* Lightbox specific overrides */
.lightbox-backdrop {
    background-color: rgba(0, 0, 0, 0.95);
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

/* 6. Form Fields & Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    border-radius: 0.5rem;
    border: 1px solid transparent;
    transition: all 0.15s ease-in-out;
}

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

.btn-primary:hover {
    background-color: var(--primary-red-hover);
    border-color: var(--primary-red-hover);
    color: var(--bg-white);
}

.btn-red-outline {
    background-color: transparent;
    color: var(--primary-red);
    border-color: var(--primary-red);
}

.btn-red-outline:hover {
    background-color: var(--primary-red);
    color: var(--bg-white);
    text-decoration: none;
}

.btn-secondary {
    background-color: var(--bg-light-soft);
    color: var(--text-dark);
    border-color: var(--border-gray);
}

.btn-secondary:hover {
    background-color: var(--border-gray);
    color: var(--text-dark);
}

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

.form-label {
    display: block;
    margin-bottom: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
    font-family: inherit;
    line-height: 1.5;
    color: var(--text-dark);
    background-color: var(--bg-white);
    border: 1px solid var(--border-gray-dark);
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out;
}

.form-control:focus {
    color: var(--text-dark);
    background-color: var(--bg-white);
    border-color: var(--primary-red);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(229, 57, 53, 0.15);
}

/* Form layouts */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-row-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.form-row-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-row-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.policy-checkbox-container {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.policy-checkbox {
    margin-top: 0.25rem;
    width: 1.15rem;
    height: 1.15rem;
    accent-color: var(--primary-red);
    cursor: pointer;
}

.policy-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* 7. Alerts & Badges */
.alert {
    position: relative;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px solid transparent;
    border-radius: 0.5rem;
    font-size: 0.95rem;
}

.alert-success {
    background-color: var(--success-bg);
    border-color: var(--success-border);
    color: var(--success);
}

.alert-danger {
    background-color: var(--danger-bg);
    border-color: var(--danger-border);
    color: var(--danger);
}

.alert-warning {
    background-color: var(--warning-bg);
    border-color: var(--warning-border);
    color: var(--warning);
}

.badge {
    display: inline-block;
    padding: 0.25em 0.6em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 9999px;
}

.bg-red-light { background-color: var(--primary-red-light); }
.bg-green-light { background-color: var(--success-bg); }
.bg-yellow-light { background-color: var(--warning-bg); }
.bg-purple-light { background-color: var(--purple-bg); }

.text-red { color: var(--primary-red); }
.text-green { color: var(--success); }
.text-yellow { color: var(--warning); }
.text-purple { color: var(--purple); }

.border-red { border-color: var(--danger-border); }
.border-green { border-color: var(--success-border); }
.border-yellow { border-color: var(--warning-border); }
.border-purple { border-color: var(--purple-border); }

/* 8. Leaflet Map Customization */
.map-section {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border: 1px solid var(--border-gray);
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-gray);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.map-container {
    z-index: 1;
    border-radius: 0.5rem;
    overflow: hidden;
}

.leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.leaflet-popup-content {
    font-family: var(--font-family);
    line-height: 1.4;
}

/* 9. Footer Layout */
.footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 2.5rem 1.5rem 1.5rem;
    border-top: 4px solid var(--primary-red);
    margin-top: 3rem;
}

.footer-container {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        align-items: center;
    }
}

.footer-info {
    font-size: 0.9rem;
}

.footer-info-bold {
    font-weight: 700;
    font-size: 1.05rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
}

.footer-links span {
    color: var(--text-muted);
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary-red);
}

.footer-copy {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #343a40;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* 10. Dashboard Layout & Tabs */
.dashboard-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-gray);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

@media (min-width: 640px) {
    .dashboard-header {
        flex-direction: row;
        align-items: center;
    }
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border-gray);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tab-link {
    padding: 0.75rem 1.25rem;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    letter-spacing: 0.05em;
}

.tab-link:hover {
    color: var(--text-dark);
    text-decoration: none;
}

.tab-link.active {
    color: var(--primary-red);
    border-bottom-color: var(--primary-red);
}

/* Table styling */
.table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border-gray);
    border-radius: 0.5rem;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    text-align: left;
}

.data-table th {
    background-color: var(--bg-light-soft);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    padding: 0.75rem 1rem;
    border-bottom: 2px solid var(--border-gray);
}

.data-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-gray);
    vertical-align: middle;
}

.data-table tr:hover {
    background-color: var(--bg-light-soft);
}

/* 11. Centered Auth Form Page Layout (Login / Create Admin) */
.auth-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: var(--bg-light);
    padding: 1.5rem;
}

.auth-card {
    background-color: var(--bg-white);
    padding: 2.25rem;
    border: 1px solid var(--border-gray);
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 26rem;
    display: flex;
    flex-direction: column;
    animation: authSlideUp 0.3s ease-out;
}

@keyframes authSlideUp {
    from { transform: translateY(15px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-title {
    font-size: 1.35rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary-red);
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.auth-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 0.25rem;
    color: var(--text-dark);
}

.auth-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-gray);
    padding-top: 1.25rem;
}

/* 12. Social Media Sharing Section */
.share-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

@media (min-width: 640px) {
    .share-section {
        flex-direction: row;
        gap: 1.25rem;
    }
}

.share-label {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background-color: var(--bg-white);
    color: var(--text-muted);
    border: 1px solid var(--border-gray);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.share-btn:hover {
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.share-facebook:hover { background-color: #1877F2; border-color: #1877F2; }
.share-x:hover { background-color: #000000; border-color: #000000; }
.share-whatsapp:hover { background-color: #25D366; border-color: #25D366; }
.share-linkedin:hover { background-color: #0A66C2; border-color: #0A66C2; }
.share-email:hover { background-color: var(--primary-red); border-color: var(--primary-red); }

/* 10. Expanded Features (Metadata, Additional Info, Video Appeals) */
.pet-meta-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background-color: var(--bg-light);
    padding: 0.85rem 1.25rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-gray);
}

.pet-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.pet-meta-icon {
    font-size: 1.15rem;
    flex-shrink: 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.info-item {
    background-color: var(--bg-light);
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-gray);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-item strong {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.info-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.video-appeal-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.video-container {
    max-width: 300px;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border-gray);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    background-color: #000;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breed-article-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.breed-article-content h2,
.breed-article-content h3,
.breed-article-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.breed-article-content h2 {
    font-size: 1.35rem;
}

.breed-article-content h3 {
    font-size: 1.2rem;
}

.breed-article-content h4 {
    font-size: 1.1rem;
}

.breed-article-content strong {
    font-weight: 700;
    color: var(--text-dark);
}


