/* General Styles */

h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, serif, var(--bs-font-sans-serif);
}

.ico-lg {
	width: 1.25rem;
	height: 1.25rem;
}

/* Navbar */
.navbar {
	padding: 1rem 0;
}

.bg-black {
	background: #000000!important;
}

.navbar-brand img {
	transition: all 0.3s ease;
}

.navbar-brand:hover img {
	opacity: 0.8;
}

.nav-link {
	font-weight: 500;
	padding: 0.5rem 1rem;
}

/* Featured Post */
.featured-post {
	position: relative;
}

.featured-post .col-lg-6 {
	min-height: 300px;
}

/* Cards */
.card {
	border: none;
	transition: all 0.3s ease;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.featured-image {
	height: 200px;
	width: 100%;
	object-fit: cover;
}

.card-img-top {
	height: 200px;
	object-fit: cover;
}

.object-fit-cover {
	object-fit: cover;
}

/* Footer */
.social-links a {
	display: inline-block;
	width: 24px;
	height: 24px;
	line-height: 24px;
}

.overlay-gradient-dark {
	background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}

.overlay-front {
	position: relative;
	z-index: 3;
}

/* Responsive */
@media (max-width: 768px) {
	.featured-image {
		height: 150px;
	}
	.featured-post .col-lg-6:last-child {
		height: 200px;
	}
	
	.card-img-top {
		height: 150px;
	}
	.navbar-nav {
		line-height: 1.6 !important;
	}
	.spotlight-title {
		font-size: 1.25rem !important;
		line-height: 1.4 !important;
	}
}

.editor-photo {
	width: 150px;
	height: 150px;
	background: #FFAB91;
}