.gallery-section {
	padding: 0;
	padding-bottom: 50px;
}

.gallery__tile {
	position: relative;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	height: 260px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery__content {
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row-reverse;
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #0000007a;
    padding: 15px;
}

.gallery__title {
	margin: 0 0 10px;
	font-size: 25px;
	position: relative;
	font-weight: 400;
}

.gallery__title a {
	text-decoration: none;
	color: #fff;
	transition: text-shadow 0.3s ease;
}

.gallery__button {
	display:flex;
	align-items: center;
	justify-content: center;
	padding: 0px 6px;
	color: #fff;
	text-decoration: none;
	border-radius: 50%;
	transition: background-color 0.3s ease;
	border: 2px solid #fff;
	margin-left: 10px; 
	position: relative;
	width: 35px;
	height: 35px;
}
.gallery__button i {
	font-size: 16px;
}
.gallery__title::after {
	content: '';
	position: absolute;
	width: 40px;
	height: 5px;
	background-color: #e01020;
	transition: width 0.3s ease;
}

.gallery__title::after {
	bottom: -9px;
	left: 0;
}

.gallery__title:hover::after ,.gallery__button:hover ~ .gallery__title:after {
	width: 100%;
}
  
  
/* Adjustments for smaller screens */

@media (min-width: 1800px)  {
	.gallery__title {
		font-size: 28px;
	}
}



@media (min-width: 1200px) and (max-width: 1400px) {
}



@media (min-width: 992px) and (max-width: 1199.98px) {
	.gallery__content {
		/* padding: 105px 20px 20px 20px; */
	}
	.gallery__title {
        font-size: 22px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.gallery__content {
		/* padding: 200px 20px 20px 20px; */
	}
	.gallery__tile {
		margin-bottom: 24px;
	}
	.gallery-section {
		padding-bottom: 20px;
	}
}

@media (max-width: 767.98px) {
	.gallery__tile {
		margin-bottom: 24px;
	}
	.gallery__button {
		width: 30px;
		height: 30px;
	}
	.gallery-section {
		padding-bottom: 20px;
	}
}
  