.btn-talent {
	background-color: #C22A16 !important;
	border-color: #C22A16 !important;
}
.btn-talent:hover {
	background-color: #962011 !important;
	border-color: #962011 !important;
}
a, .nav-link {
	color: #C22A16;
}
.nav-underline .nav-link:hover {
	color: #962011;
	border-bottom-color: #962011;
}
/*.link-underline {
	-webkit-text-decoration-color: #C22A16 !important;
	text-decoration-color: #C22A16 !important;
}*/
.news-category {
	background-color: #f9ecf4;
	border-radius: 4px;
	color: #C22A16;
	text-transform: uppercase;
	padding: 3px 6px;
	display: inline-block;
	font-size: 0.8em;
	font-weight: bold;
	margin-bottom: 8px;
}

/* Publications > Carousel */
.carousel-inner .carousel-item .cards-wrapper {
  display: flex;
}
.carousel-inner .carousel-item .card {
  margin: 0 10px; /* Add spacing between cards */
  flex: 0 0 calc(33.333% - 20px); /* Adjust width for 3 cards, accounting for margins */
}
.carousel-inner .carousel-item .card .card-text {
	min-height: 85px;
}
.carousel-wrapper {
    padding-bottom: 2rem; /* Adjust this value as needed */
    position: relative;
}

/* Override Bootstrap's default 'bottom' position for indicators */
.carousel-news.carousel-indicators {
    bottom: -2rem; 
    margin-bottom: 0;
    background-color: #f8f9fa; 
}
.carousel .carousel-news.carousel-indicators button {
	width: 10px;
	height: 10px;
	border-radius: 100%;
}
.card img {
  object-fit: cover;
  height: 200px; /* Set a fixed height or use utility classes */
  
}

.key-person {
	width: 100px;
}
.logo {
	height: 50px;
	width: auto;
}
.container > div > div.col-6.text-end > p {
	display: none;
}

@media(min-width: 768px) { /* md */
	.key-person {
		width: 150px;
	}
	.logo {
		height: 70px;
	}
}
.line-clamp-5 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 5; /* Number of lines to show */
	-webkit-box-orient: vertical;
	/* Optional: Add text-overflow property for broader compatibility, though -webkit-line-clamp handles the ellipsis */
	text-overflow: ellipsis; 
}