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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 800;
    font-style: italic;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: rgb(0, 58, 93);
    letter-spacing: 1px;
}

/* Header and Navigation */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.brand-link {
    text-decoration: none;
    display: inline-flex; /* Use inline-flex for proper sizing */
    flex-direction: column;
    align-items: stretch; /* Stretch children to match width */
    line-height: 1;
}

.brand-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    font-style: italic;
    color: #007bff; /* Bright blue color */
    letter-spacing: 1px;
}

.brand-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    background-color: rgb(0, 58, 93); /* Dark blue background */
    padding: 0.1rem 0.6rem;
    border-radius: 0;
    margin-top: -4px; /* Overlap with the title */
    text-align: center; /* Center the text within the stretched element */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.nav-link:hover {
    color: #1a5fb4;
}

.blue-btn {
    background: #1a5fb4;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 0;
    transition: background 0.3s ease;
}

.blue-btn:hover {
    background: #0d3d7a;
    color: white !important;
}

.hamburger-content {
    top: 80px;
    right: 0;
    position: fixed;
    /* padding: 2rem 3rem; */
    background-color: white;
    height: calc(100vh - 70px);
}

.hamburger-content ul {
    margin: 0;
    padding: 0;
}

.hamburger-content ul li {
    padding-left: 3rem;
    padding-right: 5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    transition: background-color 0.3s ease;
}

.hamburger-content ul li:hover {
    background-color: rgb(240, 240, 240);
}

.hamburger:not([open]) .hamburger-content {
    display: none !important;
}

.hamburger-content li {
    list-style: none;
}

.hamburger {
    display: none;
}

.hamburger summary {
    flex-direction: column;
    cursor: pointer;
    width: 25px;
    height: 25px;
    display: flex;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger summary {
  list-style: none;
}

.hamburger summary::marker, /* Latest Chrome, Edge, Firefox */ 
.hamburger summary::-webkit-details-marker /* Safari */ {
  display: none;
}

/* Hero Section */
.hero {
    height: 75vh; /* Full viewport height */
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/20221031_132142.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; /* Parallax effect */
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    margin-top: 0;
}

.hero .container {
    width: 100%;
}

.hero-content {
    max-width: 45%;
    text-align: left;
    background: none;
    padding: 0; /* Remove padding as it's handled by container */
}

.hero-content .btn {
    padding: .5rem .5rem;
    text-align: center;
    width: 100%; /* Allow button to size to content */
    display: inline-block;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: .7rem;
    line-height: 1.1;
    color: white;
    text-align: center;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: .7rem;
    color: white;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #1a5fb4; /* Solid blue background */
    color: white;
    border: 2px solid #1a5fb4;
}

.btn-primary:hover {
    background: #0d3d7a;
    border-color: #0d3d7a;
    transform: translateY(-2px);
    color: rgba(255, 255, 255,.8);
}

.btn-secondary {
    background: transparent;
    color: #1a5fb4; /* Blue text */
    border: 2px solid #1a5fb4; /* Blue border */
}

.btn-secondary:hover {
    background: #1a5fb4;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #1a5fb4;
    border: 2px solid #1a5fb4;
    border-radius: 0; /* Make button pill-shaped */
    padding: 0.8rem 2.5rem;
    font-weight: 600;
}

.btn-outline:hover {
    background: #1a5fb4;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.image-placeholder {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border: 3px dashed rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

/* Meet Debra Section */
.meet-debra {
    padding: 80px 0;
    background: #fff; /* Change background to white */
}

.meet-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.meet-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: #1a5fb4;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.meet-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.meet-image {
    position: sticky;
    top: 100px;
}

.meet-image .image-placeholder {
    width: 300px;
    height: 400px;
    background: #e9ecef;
    border: 3px dashed #dee2e6;
    color: #6c757d;
    margin-bottom: 2rem;
}

.about-portrait-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.quick-facts {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.quick-facts h4 {
    font-size: 1.3rem;
    color: #1a5fb4;
    margin-bottom: 1rem;
    text-align: center;
}

.quick-facts ul {
    list-style: none;
    padding: 0;
}

.quick-facts li {
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.9rem;
    line-height: 1.4;
}

.quick-facts li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.quick-facts strong {
    color: rgb(0, 58, 93);
    display: block;
    margin-bottom: 0.2rem;
}

/* Donation Section */
.donation {
    padding: 80px 0;
    background: #1a5fb4;
    color: white;
    text-align: center;
}

.donation .section-title {
    color: white;
    margin-bottom: 1rem;
}

.donation-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.donation-amounts {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.donation-amount {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.donation-amount:hover {
    background: white;
    color: #1a5fb4;
    transform: translateY(-2px);
}

/* News Section */
.news {
    padding: 80px 0;
    background: #fff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-date {
    color: #1a5fb4;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.news-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: rgb(0, 58, 93);
}

.news-item p {
    color: #555;
    margin-bottom: 1rem;
}

.read-more {
    color: #1a5fb4;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0d3d7a;
}

/* Issues Section */
.issues {
    padding: 80px 0;
    background: #f8f9fa;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.issue-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.issue-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.issue-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: rgb(0, 58, 93);
}

.issue-card p {
    color: #555;
}

/* Footer */
.footer {
    background: #fff;
    color: rgb(0, 58, 93);
    padding: 50px 0 0;
    border-top: 5px solid rgb(0, 58, 93);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align items to the top */
    gap: 3rem; /* Increase gap for better spacing */
    padding-bottom: 3rem;
}

.footer-brand {
    flex-shrink: 0; /* Prevent the logo from shrinking */
}

.footer-brand .brand-title {
    font-size: 3rem;
}

.footer-brand .brand-subtitle {
    font-size: 1rem;
    margin-top: -6px;
}

.footer-contact {
    flex: 1;
}

.footer-contact p {
    margin: 0;
    line-height: 1.6;
}

.footer-contact a {
    color: rgb(0, 58, 93);
    text-decoration: none;
}

.footer-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
}

.footer-nav a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.footer-social {
    flex: 1;
    text-align: right;
}

.social-icons {
    margin-bottom: 1rem;
}

.social-icons a {
    color: #007bff;
    font-size: 1.5rem;
    margin-left: 1rem;
}

.footer-link {
    display: block;
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #e9ecef;
    font-size: 0.9rem;
    color: #6c757d;
}

/* Responsive Design */
@media (max-width: 1250px) {
    .hamburger {
        display: block;
    }

    .nav-menu li:not(.nohide) {
        display: none;
    }

    .nav-menu {
        display: flex;
        align-items: center !important;
        justify-content: center !important;
        position: absolute;
        right: calc(1rem + 25px + 2rem);
        height: 80px;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        right: calc(1rem + 25px + 1rem) !important;
    }
    .page-hero-content {
        display: flex !important;
        flex-direction: column;
        text-align: center;
    }

    .hero {
        background-position: 75% left; /* Adjust focus for mobile */
    }

    .hero::after {
        /* Make the gradient cover more of the screen on mobile */
        background: linear-gradient(to right, rgba(248, 249, 250, 1) 20%, rgba(248, 249, 250, 0.8) 60%, transparent 80%);
    }

    .hero-content-wrapper {
        max-width: 100%;
    }

    .hero-content {
        padding: 2rem;
        text-align: center;
        width: 100%;
        margin-right: 0;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .meet-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .meet-image {
        order: -1;
        position: static;
    }

    .meet-image .image-placeholder {
        width: 250px;
        height: 350px;
        margin: 0 auto 2rem;
    }

    .quick-facts {
        margin-top: 2rem;
    }

    .donation-amounts {
        flex-direction: column;
        align-items: center;
    }

    .donation-amount {
        width: 200px;
        text-align: center;
    }

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

    .issues-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-main {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer-nav ul {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        align-items: center;
    }

    .footer-nav ul li {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
        text-align: center;
    }

    .hero-image .image-placeholder {
        width: 300px !important;
        height: 300px !important;
    }

    .hero-img {
        width: 300px !important;
        height: 300px !important;
    }

    .meet-image .image-placeholder {
        width: 250px !important;
        height: 350px !important;
    }
}

/* Page Hero Section */
.page-hero {
    background-color: #eef7ff; /* Light blue background */
    padding: 120px 0 80px;
    margin-top: 0px;
}

.page-hero-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.page-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 0.5rem;
}

.page-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    font-style: italic;
    color: rgb(0, 58, 93);
    line-height: 1;
    margin-bottom: 1rem;
}

.page-hero-text p {
    font-size: 1.1rem;
    color: #333;
}

.page-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.page-hero + .main-content {
    padding-top: 0;
}


/* Main Content Area for Sub-pages */
.main-content {
    padding-top: 70px; /* Adjust for fixed header */
}

.main-content.gray-bg {
    background-color: #f8f9fa;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Endorsements Section */
.endorsements-section {
    padding: 0 0 80px; /* Reduced top padding */
}

.endorsement-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.endorsement-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.endorsement-card {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 2rem;
    box-sizing: border-box;
    text-align: center;
}

.endorsement-quote {
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.endorsement-author {
    font-weight: 600;
    color: rgb(0, 58, 93);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 5px;
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}


/* Form Section Styles */
.form-section {
    padding: 80px 0;
    /* Background moved to .main-content.gray-bg */
}

.form-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #555;
}

.volunteer-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5fb4;
    box-shadow: 0 0 5px rgba(26, 95, 180, 0.5);
}

.form-group button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* Space between button and text */
    margin-bottom: 0.75rem;
    font-weight: normal;
    cursor: pointer;
}

.radio-group input[type="radio"] {
    /* Remove default browser styles */
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: #6c757d;
    width: 1em;
    height: 1em;
    border: 2px solid #6c757d;
    border-radius: 50%;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
    transition: border-color 0.2s ease;
}

.radio-group input[type="radio"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #007bff;
}

.radio-group input[type="radio"]:checked {
    border-color: #007bff;
}

.radio-group input[type="radio"]:checked::before {
    transform: scale(1);
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: #6c757d;
    width: 1em;
    height: 1em;
    border: 2px solid #6c757d;
    border-radius: 3px;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.checkbox-group input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #fff;
}

.checkbox-group input[type="checkbox"]:checked {
    background-color: #007bff;
    border-color: #007bff;
}

.checkbox-group input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.required-star {
    color: #d9534f;
}

.form-divider {
    border: 0;
    border-top: 1px solid #e9ecef;
    margin: 2rem 0;
}

.form-closing {
    text-align: center;
    margin-top: 2rem;
    color: #555;
    font-style: italic;
}

.content-section {
    padding: 30px 0;
}

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

.content-section .page-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    font-style: italic;
    color: rgb(0, 58, 93);
    margin-bottom: 0.5rem;
}

.content-section .subtitle {
    font-size: 1.5rem;
    font-style: italic;
    color: #555;
    margin-bottom: 2rem;
}

.content-section .lead-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.content-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: rgb(0, 58, 93);
    margin-bottom: 1.5rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-section *:last-of-type {
    margin-bottom: 0 !important;
}

.alt-bg {
    background-color: #f8f9fa;
}

.priorities-footer .closing-statement {
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    color: #333;
    max-width: 900px;
    margin: 2rem auto 0;
}

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

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

.updates-section:first-of-type {
    margin-top: 2.5rem;
}

.updates-section {
    margin: 1.5rem;
    margin-left: max(1.5rem, 20vw);
    margin-right: max(1.5rem, 20vw);
    border-radius: 2rem;
    box-shadow: 0px 0px 10px rgba(0,0,0,.1);
    overflow-y: hidden;
    overflow-x: hidden;
}

@media (max-width: 1500px) {
    .updates-section {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }
}

@media (max-width: 750px) {
    .endorsement-carousel {
        flex-direction: column;
    }

    .endorsement-card {
        max-width: 100%;
    }

    .endorsement-card img {
        max-width: 100% !important;
    }
}

.updates-section summary {
    font-size: 2rem;
    font-weight: 900;
    padding-left: 1.25rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    justify-content: start;
    align-items: center;
}

.updates-section summary h1 {
    color: black;
    margin: 0;
}

.carousel-item img {
    border-radius: 1.5rem;
    margin-bottom: 1rem;
    max-width: calc(33vw - 8rem);
    aspect-ratio: 25/30;
    width: 225px;
}

.modified-author {
    color: black;
    font-size: 1.5rem;
    font-weight: 900 !important;
}

.updates-section summary {
    cursor: pointer;
    list-style: none;
}

.updates-section summary::-webkit-details-marker {
  display: none;
}

.btn-primary-tiny {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    display: inline-block;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}