/* Carousel Wrapper */
.info-card-carousel {
    padding: 20px 0;
    position: relative;
}

/* Swiper Styles */
.swiper-wrapper {
    display: flex;
}
.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    max-width: 368px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    background-color: #EFEBE1; /* TRC4 Primary */
    color: #000;
    border-radius: 0; /* Square */
    overflow: hidden;
}

/* Card Content */
.info-card-content {
    padding: 5%;
    text-align: center;
    font-family: 'Source Sans Pro', sans-serif;
}

/* Headings */
.info-card-content h2,
.info-card-content h3 {
    margin-bottom: 3%;
}

/* Paragraph */
.info-card-content p {
    font-size: 1rem;
    margin-bottom: 16px;
}

/* Buttons */
.info-card-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.info-button {
    background-color: #F0621E;
    color: white;
    padding: 12px 20px;
    font-weight: bold;
    border-radius: 0; /* Square */
    text-decoration: none;
    transition: all 0.3s ease;
}
.info-button:hover {
    background-color: white;
    color: #F0621E;
    border: 2px solid #F0621E;
}

/* Swiper Navigation Buttons */
.swiper-button-prev,
.swiper-button-next {
    display: flex;
    color: #F0621E;
    top: 45%;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* Responsive Layout */
@media (max-width: 768px) {
    .swiper-slide {
        max-width: 100%;
    }
}


/* Featured info card CSS */

.featured-info-card {
  display: flex;
  max-width: 1200px;
  margin: 2rem auto;
  align-items: stretch;
}

.featured-info-card-image { 
	flex: 0 0 40%; max-width: 40%; 
	aspect-ratio:1/1; 
	overflow:hidden; 
	background:#eee; 
	display:flex; 
	align-items:center; 
	justify-content:center; 
}

.featured-info-card-image img { 
	width:100%; 
	height:100%; 
	object-fit:cover; 
}

.featured-info-card-content { 
	flex:0 0 60%; 
	padding:2%; 
	background:#006285; 
	display:flex; 
	flex-direction:column; 
	justify-content:center; 
	color:#fff; 
}
.feat-info-content { 
	margin-bottom:1rem; padding-bottom: 3%
}
.feat-info-buttons { 
	display:flex; gap:.5rem; 
}

a.feat-info-link {
	color: white;
	text-decoration: underline !important;
}
.feat-button { background:#f1621e; padding:.75rem 1rem; color:#fff; text-transform:uppercase; font-weight:500; }
