/* Basic Reset & Body Style */
body {
    background-color: #ffffff;
    color: #000000;
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.5;
    font-weight: bold;
    font-size: 1em;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

/* Link Styling from original file */
a {
    color: #0000ff;
    text-decoration: underline;
}

a:visited {
    color: #551a8b;
}

/* Header and Footer Styling */
.header, .footer {
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.footer {
    margin-top: 30px;
    border-top: 1px solid #ccc;
    border-bottom: none;
    padding-top: 10px;
}

/* --- Masonry Grid Layout --- */
.section--collage__items {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    grid-auto-rows: 20px; /* Each row is a 20px unit for the JS */
}

.section--collage__item {
    position: relative;
}

.section--collage__item img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.block--caption p {
    font-size: 0.9em;
    padding: 0 5px;
    margin-bottom: 10px; /* Space between paragraphs */
}

/* Responsive Video Container from original file */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 10px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}