.centered {
	text-align:center;
}

.beer-loop-title {
	line-height: 1.1em !important
}
.beer-column:last-child {
		display:none
	}

/* Carousel Container */
.ft-beer-row {
	min-height: 400px;
}

.beer-carousel {
/*     display: flex;
    flex-direction: column;
    position: relative; */
    width: 100%;
/*     overflow: hidden; */
}

/* Individual Slide */
.beer-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
	border: 10px solid #f1f1f1;
}

/* Active Slide */
.beer-slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* Columns */
.beer-column {
    flex: 1;
    padding: 10px;
    text-align: center;
}

.beer-image-column {
    position: relative;
    z-index: 10;
	text-align: center;
	padding: 0 !Important
}

.beer-loop-image {
    max-width: 100%;
    border-radius: 10px;
}

.can-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    border-radius: 10px;
    height: 150px;
    text-align: center;
}

/* Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
	background-color: rgb(255,255,255,1);
	border-radius: 50%;
    color: #9fa1a3;
	font-weight: 500;
	font-size: 24px;
    border: none;
	border: 8px solid #e8e8e8;
    cursor: pointer;
    z-index: 20;
}
.carousel-arrow.prev {
	padding: 10px 12px 10px 8px;
}
.carousel-arrow.next {
	padding: 10px 8px 10px 12px;
}
.beer-loop-img-mobile {
		display:none;
	}
.beer-loop-img-desk {
		display:block;
	}
.beer-column h2 {
	margin-bottom: 8px;
}
.beer-column h3 {
	margin-bottom: 8px;
	line-height: 28px
}
.beer-column h4 {
	font-weight: 800
}
@media (min-width: 768px) {
	.beer-slide {
		padding: 20px 30px
	}
	.beer-column h2, .beer-column h3, .beer-column h4, .beer-column p {
		text-align: left !important;
		margin-left:20px !important;	
	}
	
.carousel-arrow.prev {
    left: -30px;
	
}

.carousel-arrow.next {
    right: -30px;
}

}
.carousel-arrow:hover {
	background-color: rgb(255,255,255,1);
	border-radius: 50%;
	border: 8px solid #e8e8e8
}
.beer-column:first-child {
		padding-left: 20px;
	}
.beer-image-column .beer-loop-image {
	max-width: 350px;
}
/* MEDIA QUERIES FOR RESPONSIVENESS */
@media (min-width: 768px) {
	.taproom .row.equal-height-wrap {
		width:90%;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 100px
	}
	.taproom .centered {
		margin-bottom: 60px
	}
}
@media (max-width: 767px) {
	.taproom .centered {
		margin-bottom: 20px
	}
	.beer-column h2, .beer-column h3, .beer-column h4, .beer-column p {
		text-align: center;
	}
	.beer-column p {
		margin-bottom: 30px
	}
	.ft-beer-row {
		min-height: 700px;
		border: 0px solid #000;
	}
    /* Make each column stack vertically */
    .beer-slide {
        flex-direction: column;
    }

    .beer-column {
        flex: none;
        width: 90%;
        text-align: center;
    }
	.beer-column:first-child {
		padding: 10px 20px;
	}
	.beer-column:last-child {
		opacity: 0
	}
	.beer-loop-img-mobile {
		display:block;
		max-width: 400px;
		height:auto
	}
	.beer-loop-img-desk {
		display:none;
	}
    /* Full-size image on mobile */
    .beer-image-column {
        margin-top: 0;
    }

    .beer-loop-image {
        max-width: 400px;
        height: auto;
        margin-bottom: 20px; /* Add space between the image and text */
    }

    .can-placeholder {
        height: auto;
        padding: 20px;
    }

    /* Adjust carousel arrows for smaller screens */
    .carousel-arrow.prev {
        left: -18px;
    }

    .carousel-arrow.next {
        right: -18px;
    }
}

@media (max-width: 480px) {
	.ft-beer-row {
		min-height: 600px;
		border: 0px solid #000;
	}
    /* Further refine spacing and text for small devices */
    .beer-loop-sub-title {
        font-size: 14px;
    }

    .small {
        font-size: 12px;
    }

    .carousel-arrow {
        padding: 8px 16px;
    }
}