/* ===========================
   text-section-five (Block)
=========================== */
.text-section-five {
    padding: 64px 0 80px;
    font-family: "Proxima Nova Rg", sans-serif;
}

/* --- label (Element) --- */
.text-section-five__label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.text-section-five__label-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f9b505;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.text-section-five__label-icon svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
}

.text-section-five__label-text {
    font-size: 17px;
    font-weight: 700;
    color: #383838;
    letter-spacing: 0.01em;
}

/* --- heading (Element) --- */
.text-section-five__heading {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.15;
    color: #383838;
    margin-bottom: 40px;
}

/* ===========================
     text-section-five__card (Element)
  =========================== */
.text-section-five__card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 48px 40px 48px 40px;
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
}

/* --- photo column (Element) --- */
.text-section-five__card-photo-col {
    flex: 0 0 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 40px;
}

.text-section-five__card-photo-wrap {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    background: #555;
    flex-shrink: 0;
}

.text-section-five__card-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- divider (Element) --- */
.text-section-five__card-divider {
    width: 1px;
    align-self: stretch;
    background: #e0e0e0;
    flex-shrink: 0;
}

/* --- content column (Element) --- */
.text-section-five__card-content-col {
    flex: 1 1 0;
    padding-left: 40px;
}

/* --- quote icon (Element) --- */
.text-section-five__card-quote-icon {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.text-section-five__card-quote-icon svg {
    width: 28px;
    height: 28px;
    fill: #f9b505;
}

/* --- quote text (Element) --- */
.text-section-five__card-quote {
    font-size: 17px;
    line-height: 1.7;
    color: #383838;
    margin-bottom: 24px;
}

/* --- author (Element) --- */
.text-section-five__card-author-name {
    font-size: 17px;
    font-weight: 700;
    color: #383838;
    margin-bottom: 2px;
}

.text-section-five__card-author-role {
    font-size: 16px;
    color: #383838;
}

/* ===========================
     Responsive
  =========================== */
@media (max-width: 768px) {
    .text-section-five__card {
        flex-direction: column;
        padding: 32px 24px;
        gap: 28px;
    }

    .text-section-five__card-photo-col {
        flex: none;
        padding-right: 0;
    }

    .text-section-five__card-divider {
        width: 100%;
        height: 1px;
        align-self: auto;
    }

    .text-section-five__card-content-col {
        padding-left: 0;
    }
}

/* --- card title (Element) --- */
.text-section-five__card-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    color: #383838;
    margin-bottom: 16px;
    font-family: "Proxima Nova Rg", sans-serif;
}

/* Optional: если заголовок может быть ссылкой */
.text-section-five__card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.text-section-five__card-title a:hover {
    color: #f9b505;
}