/* Hero Section */
.hero-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	position: relative;
}

/* Hero Section Content */
.hero-section__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	width: 50%;
}

.hero-section__quote {
	font-style: italic;
	font-size: 2rem;
	color: #555;
	margin-bottom: 10px;
}

/* Hero Section Buttons */
.hero-section__buttons {
	display: flex;
	gap: 10px;
	padding-top: 10px;
}

/* Hero Section Image */
.hero-section__image {
	display: flex;
	justify-content: flex-end;
	width: 50%;
}

.hero-section__image img {
	width: 100%;
	height: auto;
	max-width: 50rem;
}

/* Latest Articles Section */
.latest-articles__heading {
	color: #475569;
	font-family: "Inter", sans-serif;
	font-size: 2rem;
	text-align: center;
	padding: 20px 0;
}

.blog-list {
	padding: 20px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
}

.blog-item {
	width: 45%;
}

.blog-item__content {
	display: flex;
	flex-direction: column;
}

.blog-item__main {
	background-color: #fff;
	padding: 20px;
}

.blog-item__author {
	display: flex;
	align-items: center;
	gap: 10px;
}

.blog-item__author-image {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.blog-item__author-name {
	font-family: "Inter", sans-serif;
	font-size: 1.4rem;
	color: #333;
}

.blog-item__title {
	font-family: "Inter", sans-serif;
	font-size: 2rem;
	color: #1976d2;
	margin: 10px 0;
}

.blog-item__description {
	font-family: "Inter", sans-serif;
	font-size: 1.6rem;
	color: #555;
}

.blog-item__info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 10px;
}

.blog-item__reviews {
	display: flex;
	align-items: center;
	gap: 5px;
}

.blog-item__like-icon {
	width: 24px;
	height: 24px;
}

.blog-item__like-count {
	font-family: "Inter", sans-serif;
	font-size: 1.4rem;
	color: #333;
}

.blog-item__date {
	font-family: "Inter", sans-serif;
	font-size: 1.2rem;
	color: #aaa;
}

.blog-item__cover-image {
	width: 100%;
	height: auto;
	margin-top: 10px;
}

.hero-section__search-bar-input {
	padding: 2rem 1rem;
}

.hero-section__search-bar-icon {
	width: 3rem;
	height: 3rem;
}
