.card{
	padding:12px;
	background: #FFFFFF;
	border-top: solid 4px #C51718;
}
.card__title{
	color:#000000;
	font-size: 17px;
	font-weight:800;
	margin-bottom:13px;
	transition: all .3s;
}
.card__title:hover{
	color:#C51718;
	text-decoration: underline;
}
.card__body{
	display: grid;
	grid-template-columns: 135px 1fr;
	gap:10px;
}
.card__image {
  position: relative;
  display: inline-block;
}
.card__badges {
	position: absolute;
	top: 7px;
	left: 7px;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	max-width: calc(100% - 14px);
}
.card__badge {
	padding: 4px 7px;
	color: #FFFFFF;
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: .25px;
	border-radius: 4px;
	box-shadow: 0 2px 7px rgba(0, 0, 0, .28);
}
.card__badge--new {
	background: #C51718;
}
.card__badge--verified {
	background: #248A3D;
}
.card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: 0.3s ease;
}

.card__image:hover::after {
  opacity: 1;
}
.card__image img{
	height: 100%;
    object-fit: cover;
}
.notfound {
	min-height: 420px;
}
.notfound__card {
	padding: 48px 30px;
	text-align: center;
	background: #FFFFFF;
	border-top: 4px solid #C51718;
}
.notfound__title {
	margin-bottom: 14px;
	color: #000000;
	font-size: 32px;
	font-weight: 800;
}
.notfound__text {
	max-width: 620px;
	margin: 0 auto 24px;
	color: #333333;
	font-size: 16px;
	line-height: 1.5;
}
.notfound__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 22px;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 700;
	background: #361B1B;
	border: 1px solid #361B1B;
	border-radius: 6px;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}
.notfound__button:hover {
	color: #361B1B;
	background: #FDC540;
	border-color: #FDC540;
	text-decoration: none;
}
.card__info{
	display: flex;
	flex-direction: column;
	gap:15px;
}
.card__list{
	display: flex;
	flex-direction: column;
	gap:7px;
}
.card__item{
	display: flex;
	align-items: center;
	gap:7px;
}
.card__icon{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 16px;
}
.card__item span{
	font-size: 15px;
}
.card__link{
	color:#000000;
	font-size: 15px;
	font-weight: 800;
	transition: all .3s;
}
.card__link:hover{
	text-decoration: underline;
}
.card__params{
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}
.card__param{
	background: #FFDCDC;
	padding:5px;
	width: 100%;
	flex: 1;
}
.card__label{
	color:#000000;
	font-size: 14px;
	font-weight: 500;
	display: flex;
	width: max-content;
}
.card__table{
	display: flex;
	flex-direction: column;
	gap:5px;	
}
.card__table thead tr{
	display: flex;
	gap:5px;
}
.card__table thead tr th{
	background: #361B1B;
	color:#FFFFFF;
	font-size: 14px;
	font-weight: 500;
	max-width: 100%;
	width: 100%;
	text-align: left;
	padding:3px 8px;
}
.card__table thead, .card__table tbody{
	display: flex;
	flex-direction: column;
	gap:5px;
}
.card__table tbody tr{
	display: flex;
	gap:5px;
}
.card__table tbody tr td{
	color:#000000;
	font-size: 14px;
	font-weight: 500;
	max-width: 100%;
	width: 100%;
	text-align: left;
	padding:3px 8px;
}
.card__table tbody tr:nth-child(odd) td {
  background: #EEEEEE;
}
.card__table tbody tr:nth-child(even) td {
  background: #FFFFFF;
}



@media screen and (max-width: 1200px) {
 	
}
@media screen and (max-width: 992px) {
 	
}
@media screen and (max-width: 768px) {

}
@media screen and (max-width: 576px) {

	.header__container {
      grid-template-columns: 1fr 1fr 1fr;
  }
}