.blog {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 120px 46px 0;
}

.blog__inner {
	width: 100%;
}

.blog__header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
	gap: 24px;
	margin-bottom: 32px;
}

.blog__title-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	max-width: 520px;
}

.blog__label {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
}

.blog__label-dot {
	width: 6px;
	height: 6px;
	background-color: #17ab93;
	flex-shrink: 0;
}

.blog__label-text {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 15px;
	text-transform: lowercase;
	color: #17ab93;
}

.blog__title {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 46px;
	line-height: 110%;
	letter-spacing: -0.05em;
	text-transform: uppercase;
	color: var(--black-292929);
	margin: 0;
}

.blog__all-btn {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 12px;
	color: #808080;
	font-size: 14px;
	font-family: var(--font-family);
	font-weight: 500;
	text-decoration: none;
	transition: opacity 0.3s;
	flex-shrink: 0;
}

.blog__all-btn:hover {
	opacity: 0.8;
}

.blog__all-btn svg {
	width: 19px;
	height: 11px;
	flex-shrink: 0;
}

.blog__content {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	border-bottom: 1px solid var(--line-dadada);
	border-top: 1px solid var(--line-dadada);
	padding: 24px 0;
}

.blog__main {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
	max-width: 735px;
	flex-shrink: 0;
}

.blog__main-info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: 369px;
	width: 100%;
}

.blog__cat {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 14px;
	text-transform: lowercase;
}

.blog__main-title {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 24px;
	line-height: 121%;
	text-transform: uppercase;
	color: var(--black-292929);
	margin: 8px 0 0;
}

.blog__main-date {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 14px;
	text-transform: lowercase;
	color: var(--grey-808080);
	margin: 24px 0 0;
}

.blog__read-more {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 13px;
	text-transform: uppercase;
	color: var(--black-292929);
	margin-top: 60px;
	text-decoration: none;
	transition: opacity 0.3s;
}

.blog__read-more:hover {
	opacity: 0.8;
}

.blog__read-more svg {
	width: 19px;
	height: 11px;
	flex-shrink: 0;
}

.blog__main-image {
	width: 320px;
	height: 481px;
	flex-shrink: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: transform 0.3s ease;
}

.blog__main-image:hover {
	transform: scale(1.05);
}

.blog__list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	max-width: 533px;
	width: 100%;
	flex-shrink: 0;
}

.blog__item {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	padding: 24px 0;
	border-bottom: 1px solid rgba(218, 218, 218, 0.5);
}

.blog__item:first-child {
	padding-top: 0;
}

.blog__item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.blog__item-info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	max-width: 345px;
	width: 100%;
	min-height: 129px;
	text-align: left;
}

.blog__item-title {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 18px;
	text-transform: uppercase;
	color: var(--black-292929);
	margin: 8px 0 0;
	display: block;
	text-decoration: none;
	transition: opacity 0.3s;
}

.blog__item-title:hover {
	opacity: 0.8;
}

.blog__item-date {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 14px;
	text-transform: lowercase;
	color: var(--grey-808080);
	margin: 0;
}

.blog__item-image {
	width: 108px;
	height: 129px;
	flex-shrink: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: transform 0.3s ease;
}

.blog__item-image:hover {
	transform: scale(1.05);
}

@media (max-width: 1400px){
	.blog__main{
		max-width: 50%;
	}
}

@media (max-width: 1200px) {

	.blog__main {
		width: 100%;
		max-width: 45%;
		gap: 20px;
	}

	.blog__list {
		width: 100%;
		max-width: 45%;
	}

	.blog__main-image {
		width: 280px;
	}
}

@media (max-width: 900px) {
	.blog__main {
		flex-direction: column;
	}

	.blog__main-image {
		width: 100%;
		height: 320px;
	}
}

@media (max-width: 769px) {
	.blog {
		padding: 60px 14px 0;
	}

	.blog__inner {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 28px;
	}

	.blog__header {
		width: 100%;
		align-items: flex-end;
		gap: 8px;
		margin-bottom: 0;
	}

	.blog__title-wrap {
		gap: 8px;
		max-width: none;
	}

	.blog__label {
		gap: 6px;
	}

	.blog__label-text {
		font-size: 14px;
		font-weight: 700;
	}

	.blog__title {
		font-size: 32px;
		letter-spacing: -1.5px;
		line-height: 110%;
		max-width: none;
	}

	.blog__all-btn {
		font-size: 13px;
	}

	.blog__all-btn svg {
		width: 12px;
		height: 12px;
	}

	.blog__content {
		width: 100%;
		flex-direction: column;
		padding: 0;
		border-top: none;
		border-bottom: none;
		gap: 0;
	}

	.blog__main {
		flex-direction: row;
		max-width: none;
		width: 100%;
		padding: 14px 0;
		border-bottom: 1px solid rgba(218, 218, 218, 0.5);
	}

	.blog__main-info {
		max-width: 211px;
		gap: 8px;
	}

	.blog__cat {
		font-size: 13px;
	}

	.blog__main-title {
		font-size: 16px;
		margin-top: 0;
	}

	.blog__main-date {
		font-size: 13px;
		margin-top: 0;
	}

	.blog__read-more {
		display: none;
	}

	.blog__main-image {
		width: 108px;
		height: 129px;
		flex-shrink: 0;
	}

	.blog__list {
		max-width: none;
	}

	.blog__item {
		padding: 14px 0;
		border-bottom: 1px solid rgba(218, 218, 218, 0.5);
	}

	.blog__item:first-child {
		padding-top: 14px 0;
	}

	.blog__item:last-child {
		border-bottom: none;
		padding-bottom: 0;
	}

	.blog__item-info {
		max-width: 211px;
		min-height: 129px;
		gap: 8px;
	}

	.blog__item-info-wrap {
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

	.blog__item-title {
		font-size: 16px;
		margin-top: 0;
	}

	.blog__item-date {
		font-size: 13px;
	}

	.blog__item-image {
		width: 108px;
		height: 129px;
	}
}
