.two-column-gallery {
    margin: 30px auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
    max-width: 650px;
}

.two-column-gallery .slick-slider {
    visibility: hidden;
}

.two-column-gallery .slick-slider.slick-initialized {
    visibility: visible;
}

.two-column-gallery h2 {
	margin-bottom: 0px !important;
}

.two-column-gallery.core-styles p:not(.sub-title) {
    margin-bottom: 1em;
    font-family: var(--font-graphik);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: unset;
    line-height: 26px;
}

.two-column-gallery .column-one > h2 {
    letter-spacing: unset;
    font-family: var(--font-magazine);
}

.two-column-gallery .sub-title {
    font-size: 24px;
    color: #003399;
    font-family: var(--font-graphik);
    font-variation-settings: "wght" 400;
    line-height: 30px;
    letter-spacing: unset;
    margin-bottom: 24px !important;
}

.two-column-gallery .column-one .view-all {
    font-family: var(--font-graphik);
    font-weight: 600;
    display: inline-block;
    width: 100%;
    text-decoration: none;
    margin-top: 2.5em;
}

/* Slick-dots */
.two-column-gallery .slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 0;
    margin: 0 2px;
    padding: 0;
    cursor: pointer;
}

.two-column-gallery .slick-dots li button {
    border: 2px solid #003399;
    border-radius: 100%;
    width: 5px;
    height: 5px;
    padding: 5px;
}

.two-column-gallery .slick-dots li button:before {
    display: none;
}

.two-column-gallery .slick-dots li.slick-active button {
    background-color: #003399;
}

.two-column-gallery .slide {
	position: relative;
}

.two-column-gallery .slick-slider .slick-list {
    padding: 0 !important;
}

.two-column-gallery .img-cont::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 67.19%, rgba(0, 0, 0, 0.45) 100%, rgba(0, 0, 0, 0.36) 100%);
    pointer-events: none;
}

.two-column-gallery .img-cont img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.two-column-gallery .slide .content-section {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: flex-end;
	justify-content: end;
	padding: 15px;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.two-column-gallery .content-section .image-caption {
	color: #fff;
	font-size: 14px;
	line-height: 17px;
    margin-bottom: 0;
    font-family: "franklin-gothic-urw",sans-serif;
    font-variation-settings: "wght" 500;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.35);
}
@media (max-width: 860px) {
	.two-column-gallery .sub-title{
	font-size: 20px;
	line-height: 30px;
	}
}
@media (max-width: 480px) {
	.two-column-gallery .sub-title{
	font-size: 18px;
	line-height: 20px;
	}
}
@media (min-width: 1024px) {
    .two-column-gallery {
        max-width: 1280px;
        display: flex;
        flex-direction: row;
        margin: 60px auto;
        gap: 95px;
    }

    .two-column-gallery .column-two .content-section {
        justify-content: start;
    }

    .two-column-gallery .column-one {
        width: 60%;
    }

    .two-column-gallery .column-two {
        width: 40%;
    }

    .two-column-gallery .slide .img-cont {
        height: 100%;
    }

    .two-column-gallery.align-left {
        flex-direction: row-reverse;
    }

    .two-column-gallery .sub-title {
        font-size: 21px;
    }

    .two-column-gallery .column-one .view-all {
        width: max-content;
    }
    .two-column-gallery .column-two .slide {
        width: 100% !important;
    }
    
    .two-column-gallery .column-two .slide[data-sv-row="0"] {
        grid-area: main;
    }

    .two-column-gallery .column-two .slide[data-sv-row="1"] {
        grid-area: img-two;
    }

    .two-column-gallery .column-two .slide[data-sv-row="2"] {
        grid-area: img-three;
    }

    .two-column-gallery .slick-slider .slick-track
    {
        display: grid;
        gap: 10px;
        grid-template-columns: 55% 45%;
        grid-template-rows: auto;
        width: 100%;
        height: 460px;
        margin: 0 !important;
    }

    .two-column-gallery .column-two.align-horizontal .slick-track{
        grid-template-columns: 40% 60%;
        grid-template-rows: repeat(2, 1fr);
        grid-template-areas:
            "main img-two"
            "img-three img-three";
    }

    .two-column-gallery .column-two.align-vertical .slick-track {
        grid-template-areas: 
        "main img-two"
        "main img-three";
    }
}