/* === Attention-yellow (переиспользуемая карточка) === */

.attention-yellow {
    width: 100%;
    margin-top: var(--gap-2xl, 48px);
}

.attention-yellow__inner {
    background: var(--attention-yellow-bg, #FFF9F0);
    border-radius: var(--radius-lg, 16px);
    padding: var(--spacing-lg, 24px) var(--spacing-xl, 32px);
}

.attention-yellow__title {
    display: flex;
    align-items: center;
    gap: var(--gap-sm, 8px);
    margin: 0 0 var(--spacing-lg, 24px);
    color: var(--grey-1000, #292929);
    font-family: var(--font-golos-text, "Golos Text");
    font-size: var(--font-size-base, 15px);
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
}

.attention-yellow__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--grey-1000, #292929);
}

.attention-yellow__icon svg {
    display: block;
    width: 20px;
    height: 20px;
}

.attention-yellow__title-text {
    flex: 1;
    min-width: 0;
}

.attention-yellow__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap-base, 16px);
}

.attention-yellow__item {
    font-family: var(--font-golos-text, "Golos Text");
    font-weight: 400;
    font-size: var(--font-size-base, 15px);
    line-height: var(--line-height-relaxed, 1.47);
    color: var(--grey-1000, #292929);
}

/* Вариант с текстом и кнопкой (без списка) */
.attention-yellow__content {
    margin: 0 0 var(--spacing-lg, 24px);
    font-family: var(--font-golos-text, "Golos Text");
    font-weight: 400;
    font-size: var(--font-size-base, 15px);
    line-height: var(--line-height-relaxed, 1.47);
    color: var(--grey-1000, #292929);
}

.attention-yellow__content:last-child {
    margin-bottom: 0;
}

.attention-yellow__content ul {
    margin: 0 0 var(--gap-base, 16px);
    padding-left: var(--spacing-lg, 24px);
    list-style: disc;
}

.attention-yellow__content ul li {
    margin-bottom: var(--gap-xs, 4px);
}

.attention-yellow__content ul li:last-child {
    margin-bottom: 0;
}

.attention-yellow__link {
    color: var(--color-green-main, #247D7A);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.attention-yellow__link:hover {
    color: var(--color-green-dark, #0E5C59);
}

.attention-yellow__button {
    display: inline-flex;
    align-items: center;
    gap: var(--gap-sm, 8px);
    padding: var(--spacing-md, 12px) var(--spacing-lg, 24px);
    background: transparent;
    color: var(--grey-1000, #292929);
    font-family: var(--font-golos-text, "Golos Text");
    font-weight: 500;
    font-size: var(--font-size-base, 15px);
    line-height: var(--line-height-normal);
    border: 1px solid var(--color-grey-300, #E2E2E2);
    border-radius: var(--button-border-radius, 2px);
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.attention-yellow__button:hover {
    border-color: var(--grey-1000, #292929);
    color: var(--grey-1000, #292929);
    text-decoration: none;
}

.attention-yellow__button-icon {
    display: inline-flex;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.attention-yellow__button-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}
