.block-cards {
	display: flex;
	flex-direction: row;
	align-items: start;
	justify-content: space-between;
	width: max-content;
	gap: 40px;
	padding-top: 30px;
}

.empty-card {
	width: 460px;
	height: 500px;
}

.single-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	width: 460px;
	min-height: 500px;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
	border-radius: 10px;
}

.card-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #fff;
	background-color: #b59175;
	border-radius: 0 0 10px 10px;
}

.card-button a {
	border-radius: 0 0 10px 10px;
    color: #fff;
}

.card-button:hover a {
	border-radius: 0 0 10px 10px;
    background-color: #444;
}

.card-area-item img {
	width: 100%;
	height: auto;
	display: block;
}

.card-area:nth-child(1) .card-area-item:nth-child(1) { /* Слой с фоном превью */
	position: relative;
	width: 100%;
	height: auto;
	min-height: 250px;
}

.single-card .card-area:nth-child(1) { /* Верхняя часть карты с превью и текстом */
    height: 100%;
	padding: 30px;
}

.card-area-item .card-preview-item:nth-child(1) { /* Тень над превью */
	position: absolute;
	bottom: 0;
	left: 0;
	height: 60%;
	width: 100%;
	z-index: 10;
	background: linear-gradient(
        to top,
		rgba(0, 0, 0, 0.5) 50%,
        transparent 100%
    );
}

.card-area-item .card-preview-item:nth-child(2) { /* Блок заголовка над превью */
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 11;
	width: 75%;
	padding: 0 0 10px 10px;
}

.card-preview-item h1 { /* Заголовок над превью */
	font-family: 'Manrope';
	font-weight: 800;
	font-size: 26px;
	color: #fff;
	text-transform: uppercase;
	cursor: default;
}

.card-preview-item a { /* Кнопка READ MORE */
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;	
}

.card-area-item:nth-child(2) p{
	font-family: 'Manrope';
	font-weight: 200;
	font-size: 15px;
	line-height: 25px;
	letter-spacing: 0.02em;
}

.card-area-item .card-preview-item:nth-child(3) { /* Блок кнопки READ MORE над превью */
	position: absolute;
	bottom: 0;
	right: 0;
	width: 25%;
	color: #fff;
	z-index: 11;
	padding: 0px 10px 10px 0;
	text-wrap: nowrap;
	transition: background-color 0.3s ease;
}

.card-area-item .card-preview-item:nth-child(3):hover a {
	color: #ffb982;	
}

.single-card .card-area:nth-child(1) .card-area-item:nth-child(2) { /* Текст карточки */
	font-family: 'Manrope';
	font-weight: 400;
	font-size: 16px;
	color: #444;
	padding: 10px 0;
}

.single-card .card-area:nth-child(2) { /* Блок выравнивания кнопок */
	display: flex;
	flex-direction: row;
    justify-content: center;
    align-items: center;
	width: 100%;
}

.single-card .card-area:nth-child(2) .card-area-item { /* Кнопки */
    height: 100%;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.single-card .card-area:nth-child(2) .card-area-item:nth-child(1),
.single-card .card-area:nth-child(2) .card-area-item:nth-child(1) a { /* Цвет текста левой кнопки*/
	color: #fff;
	background-color: #b59175;
	border-radius: 0 0 0 10px; /* Закругление левой кнопки*/
}

.single-card .card-area:nth-child(2) .card-area-item:nth-child(1):hover a{ /* Цвет текста левой кнопки (актив) */
	background-color: #444;
}

.single-card .card-area:nth-child(2) .card-area-item:nth-child(2),
.single-card .card-area:nth-child(2) .card-area-item:nth-child(2) a { /* Цвет текста правой кнопки*/
	color: #444;
    background-color: #dfd5cd;
	border-radius: 0 0 10px 0; /* Закругление правой кнопки*/
}

.single-card .card-area:nth-child(2) .card-area-item:nth-child(2):hover a { /* Цвет текста правой кнопки (актив) */
    background-color: #f8f4f0;
}

.button-card {
    font-family: 'Manrope';
    font-weight: 600;
    font-size: 16px;
    font-style: normal;
    cursor: pointer;
    text-decoration: none;
    display: block; 
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 60px;
	text-transform: uppercase;
    transition: background-color 0.3s ease;
}


@media (max-width: 640px) {
	
	.block-center {
		padding: 0;
	}
	
	.empty-card { 
		width: 0;
		height: 0;
	}

	.block-cards {
		flex-direction: column;
		justify-content: center;
		width: 100%;
	}
}