body {
    font-family: 'Montserrat', sans-serif;
    color: #000; /* Ensure text color is black */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Foundation utility override for custom padding/margin for clarity */
.py-5 {
    padding-top: 2rem; /* Custom padding-y-5 */
    padding-bottom: 2rem; /* Custom padding-y-5 */
}

.my-5 {
    margin-top: 2rem; /* Custom margin-y-5 */
    margin-bottom: 2rem; /* Custom margin-y-5 */
}

.mt-4 {
    margin-top: 1.5rem; /* Custom margin-top-4 */
}

.mr-2 {
    margin-right: 0.5rem; /* Custom margin-right-2 */
}


/* Slick Carousel aspect ratio containers */
.slideshow-container-16-9 {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 9 / 16 * 100% */
    height: 0;
    overflow: hidden;
}

.slideshow-container-16-9 .slick-carousel-16-9,
.slideshow-container-16-9 .slick-carousel-16-9 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure images cover the area without distorting */
}

.slideshow-container-2-1 {
    position: relative;
    width: 100%;
    padding-bottom: 50%; /* 1 / 2 * 100% */
    height: 0;
    overflow: hidden;
}

.slideshow-container-2-1 .slick-carousel-2-1,
.slideshow-container-2-1 .slick-carousel-2-1 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow-container-1-1 {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* 1 / 1 * 100% */
    height: 0;
    overflow: hidden;
}

.slideshow-container-1-1 .slick-carousel-1-1,
.slideshow-container-1-1 .slick-carousel-1-1 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* General styling for text sections to ensure Montserrat and black color */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;  
    color: #000;
}

p, blockquote {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #000;
}

blockquote {
    border-left: 5px solid #000;
    padding-left: 1rem;
    font-style: italic;
    color: #333;
}

blockquote cite {
    display: block;
    text-align: right;
    margin-top: 0.5rem;
    font-style: normal;
    color: #555;
}

/* Ensure images within slick are responsive and displayed correctly */
.slick-carousel-16-9 img,
.slick-carousel-2-1 img,
.slick-carousel-1-1 img {
    width: 100%;
    height: 100%;
    display: block; /* Remove extra space below images */
}

/* Adjustments for default Slick navigation arrows (optional, can be customized further) */
.slick-prev:before, .slick-next:before {
    font-size: 25px; /* Increase size of arrows */
    color: #000; /* Change arrow color to black */
    opacity: 0.75;
}

.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
}
.slick-prev {
    left: 10px; /* Adjust position */
    z-index: 1;
}
.slick-next {
    right: 10px; /* Adjust position */
    z-index: 1;
}

/* Custom styling for button link in text section */
.button.hollow.primary {
    border-color: #000;
    color: #000;
}
.button.hollow.primary:hover {
    background-color: #000;
    color: #fff;
}

a {
    color: #000; /* Ensure links are also black */
    text-decoration: underline;
}

a:hover {
    color: #555;
}

.slideshow-169 { margin: auto; }