/* report container */
.report-container {
    display: flex;
    flex-direction: column;
    margin-left: 0%; /* Adjust to position the report next to the sidebar */
    /* padding: 20px; */
    overflow-y: auto; /* Enable scrolling */
    height: calc(100vh - 80px);
}

/* report */
.report {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* report item */
.report-item {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    position: relative; /* Enable positioning for overlapping elements */
}

/* report content */
.report-content {
    display: flex;
    /* flex-wrap: wrap; */
    align-items: center;
    width: 100%;
    padding-top: 10%;
    position: relative; /* Enable positioning for the text box */
    overflow: visible; /* Allow the text box to hang over */
}

/* Automatically reverse layout for every even report-item */
.report-item:nth-child(even) .report-content {
    flex-direction: row-reverse; /* Flip the order of the image and text */
    /* text-align: right; */
}

/* report image */
.report-headliner-image {
    height: 50vh; /* Set the image height to 15% of the viewport height */
    width: auto;
    /* width: 60%; Maintain aspect ratio */
    object-fit: cover; /* Ensure the image covers the area without distortion */
    flex-shrink: 1; /* Prevent the image from shrinking */
}

/* Add padding to reversed images */
.report-item:nth-child(even) .report-headliner-image {
    margin-right: 15%; /* Add padding to the right edge of reversed images */
}

/* report text */
.report-text {
    position: relative;
    left: -8%; 
    top: 60%;  
    /* transform: translateY(-60%);   */
    background-color: rgba(0, 0, 0, 0.8);  
    opacity: 0.9;
    color: #ffffff; 
    padding: 45px;
    /* border-radius: 5px;   */
    max-width: 35%; 
    min-width: 30%;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);  */
}

/* Target reversed report-text */
.report-item:nth-child(even) .report-text {
    left: 8%; /* Reset or adjust the left positioning */
}
/* report text heading */
.report-text h3 {
    margin: 0 0 0px;
    font-size: 30px;
    font-weight: 400;
    color: #f4f4f4; /* Ensure the heading text is white */
}

/* report text subtext */
.report-text sub {
    font-size: 14px;
    font-weight: 200;
    color: #f4f4f4; /* Ensure the paragraph text is white */
}


/* report text paragraph */
.report-text p {
    margin: 10px 0 15px;
    font-size: 14px;
    /* font-weight: 500; */
    color: #f4f4f4; /* Ensure the paragraph text is white */
}

/* report button */
.report-button {
    display: inline-block;
    padding: 8px 12px;
    background-color: #f4f4f4;
    color: #000000;
    text-decoration: none;
    /* border-radius: 4px; */
    font-size: 14px;
    /* font-weight: bold; */
    transition: background-color 0.3s ease;
}

.report-button:hover {
    background-color: #a7a7a7;
}

.trip-report-date {
    font-size: 24px;
    font-weight: 300;
    padding-left: 20%;
    
}

.image-row {
    display: flex;
    flex-direction: row;
    gap: 20px; /* space between images */
    flex-wrap: nowrap; /* prevent wrapping if you want them strictly side-by-side */
    justify-content: flex-start; /* left-align the items */
    align-items: flex-start; /* top-align if subtexts vary in height */
    padding: 0; /* no extra padding unless desired */
}
.image-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: fit-content; /* prevents it from expanding too wide */
    max-width: 100%; /* just in case */
    margin: 0;
    padding: 0;
}

.report-image {
    width: 100%;
}

.report-image {
    max-width: 40%;       /* Limit horizontal size */
    max-height: 500px;    /* Limit vertical size */
    width: auto;          /* Maintain original aspect ratio */
    height: auto;         /* Maintain original aspect ratio */
    display: block;
}
.image-subtext {
    font-size: 12px;
    font-weight: 200;
    color: #000000; /* Ensure the subtext is white */
    opacity: 70%;
    margin-top: 4px; /* Add space above the subtext */
}

.section-header {
    font-size: 28px;
    font-weight: 200;
    margin-top: 20px; /* Add space above the section heading */
}

.subsection-header {
    font-size: 24px;
    font-weight: 200;
    margin-top: 10px; /* Add space above the section heading */
}

.report-body-text {
    font-size: 16px;
    width: 65%;
    color: #000000; /* Ensure the body text is black */
    margin-top: 10px; /* Add space above the body text */
    line-height: 1.6; /* Improve readability with line height */
}