/* ==========================================
   Charisma Charters - Custom Styles
   ========================================== */

/* ==========================================
   CSS Variables
   ========================================== */
:root {
    --primary: #0d6efd;
    --primary-dark: #0a58ca;
    --secondary: #1a365d;
    --accent: #f4a261;
    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #64748b;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

/* ==========================================
   Base Styles
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

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

/* ==========================================
   Buttons
   ========================================== */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 28px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    background: transparent;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: var(--shadow);
}

.nav-logo {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo {
    height: 40px;
}

.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 600;
    padding: 8px 16px;
    margin: 0 4px;
    border-radius: 4px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent);
}

.nav-facebook {
    font-size: 1.1rem;
}

.nav-facebook:hover {
    color: #1877f2 !important;
}

.btn-book {
    background: var(--primary);
    color: var(--white) !important;
    padding: 8px 20px !important;
    border-radius: 50px !important;
}

.btn-book:hover {
    background: var(--accent);
    transform: scale(1.05);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    transform: scale(1);
}

.hero-slide.active {
    opacity: 1;
    animation: kenBurns 8s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(15, 23, 42, 0.6) 0%,
        rgba(15, 23, 42, 0.4) 50%,
        rgba(15, 23, 42, 0.8) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.hero-logo {
    max-width: 500px;
    width: 80%;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--accent);
}

.hero-location {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-location i {
    color: var(--accent);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.slider-btn:hover {
    background: var(--white);
    color: var(--dark);
}

.slider-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    color: var(--white);
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ==========================================
   Section Styles
   ========================================== */
section {
    padding: 80px 0;
}

.section-subtitle {
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

/* ==========================================
   About Section
   ========================================== */
#about .col-lg-6:first-child {
    padding-bottom: 50px;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: 10px;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature-item i {
    font-size: 1.2rem;
}

/* ==========================================
   Trips Section
   ========================================== */
#trips {
    position: relative;
    background-image: url('https://charismacharters.com/images/home-page-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

#trips::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.9);
    z-index: 0;
}

#trips > .container {
    position: relative;
    z-index: 1;
}

.trip-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.trip-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.trip-card.featured {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.2) 0%, rgba(13, 110, 253, 0.1) 100%);
    border-color: var(--primary);
}

.featured-badge {
    position: absolute;
    top: 22px;
    right: -28px;
    background: var(--accent);
    color: var(--dark);
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
}

.trip-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.trip-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.trip-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.trip-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.trip-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.trip-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.trip-features li i {
    color: var(--accent);
}

.trip-card.horizontal {
    display: flex;
    align-items: center;
    gap: 30px;
}

.trip-card.horizontal .trip-icon {
    flex-shrink: 0;
}

.trip-card.horizontal .trip-content h4 {
    margin-bottom: 10px;
}

.trip-card.horizontal .trip-content p {
    margin-bottom: 15px;
}

/* ==========================================
   Species Section
   ========================================== */
.species-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.species-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.species-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.species-card:hover .species-image {
    transform: scale(1.1);
}

.species-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 60px 20px 20px;
    color: var(--white);
}

.species-info h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 5px;
}

.species-type {
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   Gallery Section
   ========================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 110, 253, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--white);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ==========================================
   What to Bring Section
   ========================================== */
#what-to-bring {
    position: relative;
    background-image: url('https://charismacharters.com/images/Charisma-stern.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

#what-to-bring::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 110, 253, 0.85);
    z-index: 0;
}

#what-to-bring > .container {
    position: relative;
    z-index: 1;
}

/* ==========================================
   Info Cards (What to Bring)
   ========================================== */
.info-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    height: 100%;
}

.info-card h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card ul li:last-child {
    border-bottom: none;
}

.info-card ul li::before {
    content: "\F26A";
    font-family: "bootstrap-icons";
    color: var(--accent);
}

/* ==========================================
   Contact Section
   ========================================== */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.contact-details h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-details a {
    color: var(--primary);
    font-weight: 500;
}

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

.contact-details p {
    margin: 0;
    color: var(--gray);
}

.contact-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-card .contact-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.contact-card h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
}

.contact-link:hover {
    color: var(--primary-dark);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
}

.social-links a i {
    font-size: 1.1rem;
}

.footer h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    color: var(--primary);
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

/* ==========================================
   Responsive Styles
   ========================================== */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(15, 23, 42, 0.98);
        border-radius: 10px;
        padding: 20px;
        margin-top: 15px;
    }

    .navbar-nav .nav-link {
        padding: 12px 16px;
    }

    .btn-book {
        margin-top: 10px;
        display: inline-block;
    }

    .hero-logo {
        max-width: 350px;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .experience-badge {
        bottom: -20px;
        right: 20px;
        padding: 20px;
    }

    .trip-card.horizontal {
        flex-direction: column;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 600px;
    }

    .hero-logo {
        max-width: 280px;
    }

    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .hero-location {
        font-size: 1rem;
    }

    .slider-controls {
        bottom: 80px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        display: inline-block;
        margin-top: 20px;
    }

    .info-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 575.98px) {
    .hero-logo {
        max-width: 220px;
    }

    .slider-dots {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .species-image {
        height: 150px;
    }
}

/* ==========================================
   Animations
   ========================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 80px;
}

/* ==========================================
   Internal Page Styles
   ========================================== */

/* Page Hero Banner */
.page-hero {
    position: relative;
    min-height: 340px;
    padding-top: 5rem; /* clears fixed navbar */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0.75) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    padding-top: 2rem;
    padding-bottom: 3rem;
    color: var(--white);
}

.page-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.page-breadcrumb {
    margin-bottom: 0.75rem;
}

.page-breadcrumb .breadcrumb-item a {
    color: var(--accent);
}

.page-breadcrumb .breadcrumb-item.active,
.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

/* Main Content Area */
.page-content {
    padding: 5rem 0;
    background: var(--white);
}

@media (max-width: 767.98px) {
    .page-content {
        padding: 3rem 0;
    }
}

/* ==========================================
   Sidebar
   ========================================== */
.sidebar-widget {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 0.5rem;
    border-left: 3px solid var(--accent);
}

.sidebar-widget-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li + li {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.sidebar-links a {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

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

.sidebar-links-more {
    margin-top: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 0.5rem;
}

.sidebar-links-more li:first-child {
    border-top: none;
    padding-top: 0;
}

.sidebar-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    padding: 0.5rem 0 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-toggle-btn:hover {
    color: var(--primary-dark);
}

.sidebar-toggle-btn[aria-expanded="true"] .when-collapsed,
.sidebar-toggle-btn[aria-expanded="false"] .when-expanded {
    display: none;
}

.sidebar-cta p {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

/* ==========================================
   Fishing Report Entries
   ========================================== */
.report-entry {
    padding-bottom: 2.5rem;
}

.report-entry-header {
    margin-bottom: 1rem;
}

.report-date {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    display: block;
    margin-bottom: 0.5rem;
}

.report-entry-title {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--secondary);
    margin: 0;
}

.report-species-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin-top: 1.25rem;
}

.report-species-tags li {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    background: rgba(13, 110, 253, 0.08);
    color: var(--primary);
    border-radius: 999px;
    border: 1px solid rgba(13, 110, 253, 0.2);
}

.report-photo-grid {
    margin-top: 1.5rem;
}

.report-photo {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: pointer;
}

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

.report-divider {
    margin: 0 0 2.5rem;
    border-color: rgba(0, 0, 0, 0.08);
}
