
/* common */
.absolute{
	position: absolute;
}
.relative{
	position: relative;
}
.left-0{
	left: 0;
}

.text-xs{
	font-size: 12px
}

/* Hero Section */
.banner {
	background: var(--primary);
	padding: 3rem 1rem 5rem;
	position: relative;
	overflow: hidden;
}

.banner-content {
	max-width: 600px;
}

.banner h1 {
	font-size: 3.5rem;
	font-weight: 800;
	color: white;
	line-height: 1.1;
	margin-bottom: 1.5rem;
}

.banner p {
	font-size: 1.125rem;
	color: hsla(0, 0%, 100%, 0.9);
	margin-bottom: 2rem;
	line-height: 1.7;
}

.banner .carousel-indicators{
	bottom: -80px;
}

.banner .carousel-indicators [data-bs-target]{
	height: 10px;
	width: 10px;
	border-radius: 100%;
}

.btn-banner {
	padding: 0.75rem 2rem;
	font-size: 1.125rem;
	font-weight: 600;
}

.banner-dots {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.5rem;
}

.dot {
	width: 0.75rem;
	height: 0.75rem;
	border-radius: 50%;
	background: var(--primary-foreground);
}

.dot:not(.active) {
	opacity: 0.5;
}

/* Partners Section */
.partners {
	background-color: white;
	padding: 3rem 1rem;
}

.partners-grid {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 3rem;
	flex-wrap: wrap;
	width: 100%;
}

.partner-logo {
	font-size: 1.5rem;
	font-weight: 700;
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.partner-logo:hover {
	opacity: 1;
}

.partner-1 {
	color: #1f4788;
}
.partner-2 {
	color: #16a34a;
}
.partner-3 {
	color: #ea580c;
}
.partner-4 {
	color: #dc2626;
}

/* Services Section */
.services {
	background: var(--services-bg);
	padding: 4rem 1rem;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.service-card {
	background: var(--background);
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
}

.service-card:hover {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	transform: translateY(-4px);
}

.service-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.service-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--foreground);
}

.service-card p {
	color: var(--muted-foreground);
	line-height: 1.6;
}

/* Media Section */
.media {
	padding: 4rem 1rem;
	background: var(--background);
}

.media h2 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 3rem;
	color: var(--foreground);
}

.articles {
	margin-bottom: 3rem;
}

.article-card {
	display: flex;
	flex-direction: column;
	background: var(--background);
	/* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); */
	padding: 16px 0;
	border-bottom: solid 1px var(--border);
	overflow: hidden;
	transition: box-shadow 0.3s ease;
}

.article-card:hover {
	/* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); */
}

.article-image {
	width: 100%;
	height: 200px;
	background: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 600;
	position: relative;
	font-size: 12px;
}
.article-badge{
	position: absolute;
	left: 0;
	top: 16px;
	padding: 4px 16px;
	background-color: var(--secondary);
}
.article-content {
	padding: 1.5rem;
}

.article-content h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: var(--foreground);
}

.article-content p {
	color: var(--muted-foreground);
	margin-bottom: 1rem;
	line-height: 1.6;
}

.article-link {
	display: flex;
	justify-content: end;
}

.article-link a, .article-link {
	color: var(--primary);
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
}

.article-link a:hover {
	text-decoration: underline;
}

.load-more {
	text-align: end;
	margin-bottom: 4rem;
}

.featured-article {
	display: flex;
	overflow: hidden;
}

.featured-image {
	width: 70%;
	height: 300px;
	background: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 600;
	position: relative;
}

.featured-overlay {
	padding: 1.5rem;
}

.featured-overlay h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	line-height: 1.3;
}

@media (min-width: 768px) {
	.hero h1 {
		font-size: 4rem;
	}

	.article-card {
		flex-direction: row;
	}

	.article-image {
		width: 33.333%;
		height: auto;
	}

	.article-content {
		flex: 1;
	}
}

@media (max-width: 767px) {
	.hero h1 {
		font-size: 2.5rem;
	}

	.partners-grid {
		gap: 1.5rem;
	}
}
