/* ================================================================
   TerraFloor — texture.css
   ================================================================ */

.texture-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-block: 100px;
}

.texture-section__inner {
    display: flex;
    align-items: center;
    gap: 40px;
    min-height: 638px;
}

/* ---- Левая часть ---- */
.texture-section__content {
    display: flex;
    flex-direction: column;
    gap: 36px;
    width: 577px;
    flex-shrink: 0;
}

.texture-section__eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--color-brown);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}
.texture-section__eyebrow-line {
    display: block;
    width: 19px;
    height: 0;
    border-top: 2px solid var(--color-brown);
    flex-shrink: 0;
}

.texture-section__text-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.texture-section__title {
    color: var(--color-black);
    font-size: 45px;
    line-height: 51px;
    font-weight: 600;
    margin: 0;
}

.texture-section__desc {
    color: var(--color-gray);
    font-size: 17px;
    line-height: 27px;
    margin: 0;
}

/* ---- Теги ---- */
.texture-section__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.texture-section__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 12px;
    border-radius: 104px;
    background: rgba(255, 255, 255, 0.83);
    backdrop-filter: blur(11.5px);
    -webkit-backdrop-filter: blur(11.5px);
    color: var(--color-black);
    font-size: 15px;
    font-weight: 400;
    white-space: nowrap;
}

/* ---- Правая часть: карточки ---- */
.texture-section__cards {
    flex: 1;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.texture-card {
    background: linear-gradient(180deg, #fdf9f6 0%, #f8f8f8 100%);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 17px;
    flex: 1;
    min-width: 0;
}

.texture-card__image {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 339.5 / 330.51;
}
.texture-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.texture-card__body {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.texture-card__title {
    color: var(--color-black);
    font-size: 21px;
    line-height: 24px;
    font-weight: 600;
    margin: 0;
}

.texture-card__text {
    color: var(--color-gray);
    font-size: 15px;
    line-height: 21px;
    margin: 0;
}

/* ================================================================
   Адаптив
   ================================================================ */
@media (max-width: 1280px) {
    .texture-section__content { width: 420px; }
    .texture-section__title   { font-size: 34px; line-height: 40px; }
}

@media (max-width: 1024px) {
    .texture-section__inner {
        flex-direction: column;
        min-height: auto;
        align-items: flex-start;
    }
    .texture-section__content { width: 100%; }
    .texture-section__cards   { width: 100%; }
}

@media (max-width: 768px) {
    .texture-section { padding-block: 50px; }
    .texture-section__title { font-size: 28px; line-height: 32px; }
    .texture-section__desc {
    font-size: 14px;
    line-height: 20px;
   
}
    .texture-section__eyebrow { font-size: 14px;}
    .texture-section__content { gap: 20px; }
    .texture-section__cards { flex-direction: column; }
    .texture-card { width: 100%; }
    .texture-card__body {  gap: 10px;}
.texture-card__title {
    font-size: 16px;
    line-height: 21px;
}
.texture-card__text {
    font-size: 14px;
    line-height: 20px;
}

.texture-section__tag {
    padding: 7px 12px;
    font-size: 14px;
}

.texture-card {
    padding: 20px;
 
}



}