:root {
--brand:#c8102e;
--dark:#111;
--muted:#6c757d;
}
body {
	font-family: 'Cairo', sans-serif;
	background: #f5f5f5;
	color: #222;
}
a {
	text-decoration: none;
	color: inherit;
}
a:hover {
	color: var(--brand);
}
/* Top bar */
.topbar {
	background: #111;
	color: #ddd;
	font-size: .85rem;
	padding: .4rem 0;
}
/* Sticky navbar */
.main-nav {
	background: #fff;
	box-shadow: 0 2px 8px rgba(0,0,0,.08);
	position: sticky;
	top: 0;
	z-index: 1030;
}
.navbar-brand {
	font-weight: 900;
	color: var(--brand)!important;
	font-size: 1.6rem;
}
.navbar-brand span {
	color: #111;
}
.main-nav .nav-link {
	font-weight: 700;
	color: #222;
	padding: 1rem .9rem!important;
	position: relative;
}
.main-nav .nav-link:hover, .main-nav .nav-link.active {
	color: var(--brand);
}
.main-nav .nav-link.active::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	height: 3px;
	background: var(--brand);
}
/* Section heading */
.section-title {
	border-right: 4px solid var(--brand);
	padding-right: .75rem;
	font-weight: 800;
	margin: 2rem 0 1rem;
	font-size: 1.4rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.section-title .more {
	font-size: .85rem;
	color: var(--brand);
	font-weight: 600;
}
/* Hero slider */
.hero-slide {
	position: relative;
	height: 520px;
	overflow: hidden;
	border-radius: 8px;
}
.hero-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero-slide .overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.1) 60%);
}
.hero-slide .caption {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	padding: 1.5rem 2rem;
	color: #fff;
}
.hero-slide .badge-cat {
	background: var(--brand);
	color: #fff;
	padding: .35rem .8rem;
	font-size: .75rem;
	border-radius: 3px;
	display: inline-block;
	margin-bottom: .6rem;
}
.hero-slide h2 {
	font-weight: 800;
	font-size: 1.7rem;
	line-height: 1.4;
}
.hero-slide .meta {
	font-size: .8rem;
	opacity: .85;
	margin-top: .4rem;
}
/* Side stories */
.side-story {
	display: flex;
	gap: .8rem;
	background: #fff;
	border-radius: 6px;
	padding: .6rem;
	height: calc(25% - 9px);
	overflow: hidden;
}
.side-story img {
	width: 110px;
	height: 90px;
	object-fit: cover;
	border-radius: 4px;
	flex-shrink: 0;
}
.side-story h6 {
	font-weight: 700;
	font-size: .95rem;
	line-height: 1.45;
	margin: 0;
}
.side-story .cat {
	color: var(--brand);
	font-size: .7rem;
	font-weight: 700;
}
.side-story .meta {
	font-size: .7rem;
	color: var(--muted);
	margin-top: .3rem;
}
.side-stories {
	display: flex;
	flex-direction: column;
	gap: 12px;
	height: 520px;
}
/* Article card */
.article-card {
	background: #fff;
	border-radius: 6px;
	overflow: hidden;
	/*height: 100%;*/
	transition: transform .2s, box-shadow .2s;
}
.article-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.article-card img {
	width: 100%;
	height: 170px;
	object-fit: cover;
}
.article-card .body {
	padding: .9rem;
}
.article-card .cat {
	color: var(--brand);
	font-size: .72rem;
	font-weight: 700;
	text-transform: uppercase;
}
.article-card h5 {
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5;
	margin: .4rem 0;
}
.article-card .meta {
	font-size: .72rem;
	color: var(--muted);
}
/* Carousel articles */
#carouselArticles .carousel-control-prev, #carouselArticles .carousel-control-next {
	width: 42px;
	height: 42px;
	background: var(--brand);
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%);
	opacity: 1;
}
/* Smooth slide transitions + touch hint */
.carousel-inner {
	touch-action: pan-y;
}
.carousel-item {
	transition: transform .8s cubic-bezier(.65, 0, .35, 1), opacity .6s ease;
}
#heroSlider .carousel-item img {
	transition: transform 6s ease;
}
#heroSlider .carousel-item.active img {
	transform: scale(1.06);
}
#carouselArticles .carousel-control-prev {
	right: -15px;
	left: auto;
}
#carouselArticles .carousel-control-next {
	left: -15px;
	right: auto;
}
/* Side list (thumb right) */
.thumb-item {
	display: flex;
	gap: .8rem;
	background: #fff;
	padding: .7rem;
	border-radius: 6px;
	margin-bottom: .7rem;
}
.thumb-item img {
	width: 95px;
	height: 75px;
	object-fit: cover;
	border-radius: 4px;
	flex-shrink: 0;
}
.thumb-item h6 {
	font-size: .92rem;
	font-weight: 700;
	line-height: 1.5;
	margin: 0;
}
.thumb-item .cat {
	color: var(--brand);
	font-size: .7rem;
	font-weight: 700;
}
.col-title {
	font-weight: 800;
	border-bottom: 2px solid var(--brand);
	padding-bottom: .4rem;
	margin-bottom: 1rem;
}
/* Big feature */
.feature-big {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
}
.feature-big img {
	width: 100%;
	height: 380px;
	object-fit: cover;
}
.feature-big .body {
	padding: 1.2rem 1.4rem;
}
.feature-big h3 {
	font-weight: 800;
	line-height: 1.5;
}
/* Sidebar widget */
.widget {
	background: #fff;
	border-radius: 6px;
	padding: 1rem;
	margin-bottom: 1rem;
}
.widget h5 {
	font-weight: 800;
	border-right: 3px solid var(--brand);
	padding-right: .6rem;
	margin-bottom: .9rem;
}
.pop-item {
	display: flex;
	gap: .6rem;
	padding: .6rem 0;
	border-bottom: 1px dashed #eee;
}
.pop-item:last-child {
	border: 0;
}
.pop-num {
	font-weight: 900;
	color: var(--brand);
	font-size: 1.4rem;
	line-height: 1;
	width: 28px;
	flex-shrink: 0;
}
.pop-item h6 {
	font-size: .88rem;
	line-height: 1.5;
	margin: 0;
}
/* Footer */
footer {
	background: #111;
	color: #bbb;
	padding: 2.5rem 0 1rem;
	margin-top: 3rem;
}
footer h5 {
	color: #fff;
	font-weight: 800;
	margin-bottom: 1rem;
}
footer a {
	color: #bbb;
	display: block;
	padding: .25rem 0;
	font-size: .9rem;
}
footer .copy {
	border-top: 1px solid #333;
	margin-top: 1.5rem;
	padding-top: 1rem;
	text-align: center;
	font-size: .85rem;
}

/* Mobile offcanvas from right */
@media (max-width:991px) {
.hero-slide {
	height: 340px;
}
.hero-slide h2 {
	font-size: 1.2rem;
}
.side-stories {
	height: auto;
	margin-top: 1rem;
}
.side-story {
	height: auto;
}
.feature-big img {
	height: 240px;
}
}
