.box img {
    width: 100%;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 20px;

}
section a {
    display: inline-block;
    text-decoration: none;
}

section .blog {
    margin-top: 1em;
    display: grid; 
    grid-template-columns: repeat(3, 1fr); /* 3 колонки  */
    gap: 1.5rem;
    padding: 0 15px;
}

/* Адаптивность */
@media (max-width: 1200px) {
    section .blog {
        grid-template-columns: repeat(2, 1fr); /* 2 колонки  */
    }
}

@media (max-width: 768px) {
    section .blog {
        grid-template-columns: 1fr; /* 1 колонка  */
        margin-top: 2em;
    }
    
    section .blog .card-inner {
        height: 15rem; /* Уменьшаем высоту картинки */
    }
    
    section .blog .card .content span {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    section .blog {
        padding: 0 10px;
        gap: 1rem;
    }
    
    section .blog .card-inner {
        height: 12rem;
    }
}

section .blog .card:nth-child(1) .box .icon .iconBox {
    background: #a9401f;
}
section .blog .card:nth-child(2) .box .icon .iconBox {
    background: #a9401f;
}
section .blog .card:nth-child(3) .box .icon .iconBox {
    background: #a9401f;
}

section .blog .card ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.625rem;
}

section .blog .card ul li {
    text-transform: uppercase;
    background: #a9401f;
    color: white !important;
    padding: 0.375rem 0.625rem;
    border-radius: 0.288rem;
}

section .blog .card .content {
    padding: 0.938rem 0.625rem;
    margin-bottom: 15px;
}

section .blog .card .content span {
    text-transform: inherit;
    font-size: 1.5em;
    margin-bottom: 20px;
    display: block;
    line-height: 1.5em;
}

section .blog .card .content p {
    margin: 0.625rem 0 1.25rem;
    color: #565656;
}

section .blog .card-inner {
    position: relative;
    width: 100%;
    height: 18.75rem;
    background: var(--clr);
    border-radius: 1.25rem;
    border-bottom-right-radius: 0;
    overflow: hidden;
}

section .blog .card-inner .box {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 1.25rem;
    overflow: hidden;
}

section .blog .card-inner .box .imgBox {
    position: absolute;
    inset: 0;
}

section .blog .card-inner .box .imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section .blog .card-inner .box .icon {
    position: absolute;
    bottom: -0.375rem;
    right: -0.375rem;
    width: 6rem;
    height: 6rem;
    background: var(--clr);
    border-top-left-radius: 50%;
}

section .blog .card-inner .box .icon:hover .iconBox {
    transform: scale(1.1);
}

section .blog .card-inner .box .icon::before {
    position: absolute;
    content: "";
    bottom: 0.375rem;
    left: -1.25rem;
    background: transparent;
    width: 1.25rem;
    height: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    box-shadow: 0.313rem 0.313rem 0 0.313rem #fff;
}

section .blog .card-inner .box .icon::after {
    position: absolute;
    content: "";
    top: -1.25rem;
    right: 0.375rem;
    background: transparent;
    width: 1.25rem;
    height: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    box-shadow: 0.313rem 0.313rem 0 0.313rem var(--clr);
}

section .blog .card-inner .box .icon .iconBox {
    position: absolute;
    inset: 0.625rem;
    background: #282828;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

section .blog .card-inner .box .icon .iconBox span {
    color: #fff;
    font-size: 1.5rem;
}
.primer .blog{}
.hero {
    background: #a9401f;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 0;
    border-radius: 15px;
    margin-bottom: 25px;
	    overflow: hidden;
}
.hero-text{
	    padding-left: 25px;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
}

.hero-text h1 {
  margin-bottom: 20px;
  line-height: 1.2;
  color: white;
}

.hero-text p {
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--dark);
  padding: 12px 30px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.hero-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0px;
}

.featured {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: #666;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
.price-table th,
.price-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
.price-table th {
    background: #f5f5f5;
}
.price-table .price {
    font-weight: bold;
    color: #323030;
    white-space: nowrap;
}