.homepage-wrapper .row {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 12px;
}
 .homepage-wrapper .row > [class*="col-"] {
 display:flex;
 margin-bottom:25px;
}
.homepage-wrapper .home-card {
	width: 100%;
	display: flex;
	flex-direction: column;
	min-height: 550px;
}
.homepage-wrapper {
	padding-top: 30px;
	margin-bottom: 20px;
}
/* =========================
   HOME CARD
========================= */
.home-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 18px;
	overflow: hidden;
	box-shadow:0 10px 30px rgba(0,0,0,.08);
	transition: all .3s ease;
	margin-bottom: 10px;
}
.home-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 32px rgba(0,0,0,.14);
}
/* =========================
   HEADER
========================= */

.home-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 15px 8px;
	min-height: 48px;
}
.home-header h2 {
	flex: 1;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 16px;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.home-header h2 i {
	font-size: 16px;
	flex-shrink: 0;
}
.home-header a {
	flex-shrink: 0;
	margin-left: 10px;
	font-size: 13px;
	font-weight: 600;
	color: #222;
	text-decoration: none;
	white-space: nowrap;
}
.home-header a:hover {
	color: #d60000;
}
.home-header a i {
	margin-left: 4px;
	color: #d60000;
}
/* =========================
   RED LINE
========================= */

.home-line {
	height: 4px;
	margin: 0 15px 15px;
	background: #ececec;
	border-radius: 30px;
	overflow: hidden;
}
.home-line span {
	display: block;
	width: 65%;
	height: 100%;
	background: #d60000;
}
/* =========================
   FEATURED
========================= */


.featured-image {
	display: block;
	overflow: hidden;
}
.featured-image img {
	transition: transform .4s ease;
}
.home-card:hover .featured-image img {
	transform: scale(1.08);
}
.home-item {
	transition: .3s;
	border-radius: 10px;
}
.home-item:hover {
	background: #f8f8f8;
	padding-left: 4px;
}
.home-featured {
	position: relative;
	margin: 0 15px;
	border-radius: 14px;
	overflow: hidden;
}
.home-featured img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}
.home-featured::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 75%;
	background: linear-gradient(to top, rgba(0,0,0,.95), rgba(0,0,0,.55), transparent);
}
.top-story {
	position: absolute;
	right: 12px;
	top: 12px;
	background: #d60000;
	color: #fff;
	font-size: 11px;
	padding: 6px 12px 4px 12px;
	border-radius: 20px;
	font-weight: 700;
	z-index: 5;
	box-shadow: 0 5px 15px rgba(255, 0, 0, .25);
}
.featured-overlay {
	position: absolute;
	left: 15px;
	right: 15px;
	bottom: 12px;
	z-index: 10;
}
.featured-overlay h3 {
	margin: 0 0 8px;
	font-size: 15px;
	font-weight: 700;
	line-height: 22px;
	height: 44px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.featured-overlay h3 a {
	color: #fff;
	text-decoration: none;
}
.featured-overlay h3 a:hover {
	color: #ffd9d9;
}
.home-date {
	color: #fff;
	font-size: 11px;
	display: flex;
	align-items: center;
	gap: 6px;
}
.home-date i {
	margin-right: 4px;
}
/* =========================
   LIST
========================= */

.home-list {
	padding: 12px 15px;
	min-height: 285px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.home-item {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 0;
	border-bottom: 1px solid #ececec;
	height: 95px;
	align-items: flex-start;
}
.home-item:last-child {
	border-bottom: none;
}
.home-item img {
	width: 80px;
	height: 60px;
	border-radius: 8px;
	object-fit: cover;
}
.home-text {
	flex: 1;
}
.home-text a {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	height: 44px;
	line-height: 22px;
	font-size: 15px;
	font-weight: 600;
	color: #222;
}
.home-text a:hover {
	color: #d60000;
}
.home-text span {
	display: block;
	margin-top: 8px;
	color: #777;
	font-size: 12px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px) {
.home-card {
	margin-bottom: 20px;
}
.home-featured img {
	height: 180px;
}
}
 @media(max-width:767px) {
.home-header h2 {
	font-size: 16px;
}
.home-featured img {
	height: 190px;
}
.home-item img {
	width: 80px;
	height: 60px;
	border-radius: 8px;
	object-fit: cover;
}
}
.home-card{
opacity: 0;
transform: translateY(15px);
animation: fadeUp .5s ease forwards;
}

@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(15px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}