/* Custom Styles for Treatment Timeline */

body {
    background-color: #1a2b4a;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1200px;
    padding: 0;
    margin: 0 auto;
}

/* Header Image */
.header-image {
    width: 100%;
    margin-bottom: 3rem;
}

.header-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Two Column Layout */
.content-wrapper {
    display: flex;
    gap: 2rem;
    padding: 0 1rem 3rem 1rem;
}

/* Timeline Container - Left Column */
.timeline-container {
    flex: 1;
    min-width: 0;
}

/* Shout Outs Container - Right Column */
.shoutouts-container {
    width: 400px;
    flex-shrink: 0;
}

/* Timeline Cards with Custom Corner Styling */
.timeline-card {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

    /* Custom corner radius:
       - Upper left: square (0)
       - Upper right: rounded (1rem)
       - Lower right: square (0)
       - Lower left: rounded (1rem)
    */
    border-top-left-radius: 0;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 1rem;
}

/* Shout Outs Card - Sticky positioning */
.shoutouts-card {
    background-color: #ffffff;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-top-left-radius: 0;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 1rem;
    position: sticky;
    top: 2rem;
}

.shoutouts-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a2b4a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

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

.shoutouts-card li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    color: #495057;
    font-size: 1rem;
    line-height: 1.5;
}

.shoutouts-card li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.shoutouts-card li:first-child {
    padding-top: 0;
}

/* Header Section */
.header-description {
font-size: 1.4rem;
}

/* Card Date */
.card-date {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

/* Card Title */
.card-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a2b4a;
    margin-bottom: .5rem;
}

/* Card Text */
.card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 1rem;
}

.card-text:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
    }

    .shoutouts-container {
        width: 100%;
        order: 2;
    }

    .timeline-container {
        order: 1;
    }

    .shoutouts-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 0 0.75rem 2rem 0.75rem;
    }

    .timeline-card {
        padding: 1.5rem;
    }

    .shoutouts-card {
        padding: 1.5rem;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .header-image {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .timeline-card {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .shoutouts-card {
        padding: 1.25rem;
    }

    .card-title {
        font-size: 1.35rem;
    }

    .shoutouts-card h3 {
        font-size: 1.35rem;
    }
}

@media (max-width: 845px) {
#header-image-container {
  flex-direction: column-reverse !important;
}



}
