

.common-banner-wrapper {
    width: 675px;
}

.common-banner {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #7ed957 0%, #c9ff00 100%);
    padding: 5px 15px;
    border-radius: 10px;
    position: relative;
    font-family: Arial, sans-serif;
    height: 79px;
    box-sizing: border-box;
    cursor: pointer;
}

/* Круглая картинка */
.banner-logo {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 15px;
    border: 3px solid white;
}

/* Блок с текстом */
.banner-wrapper-content {
    flex: 1;
    line-height: 1.05;
}

.banner-title {
    color: #000;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}

.banner-sub {
    font-size: 13px;
    font-weight: bold;
    color: #004400;
}

/* Белая плашка для акцентных слов */
.banner-accent {
    display: inline-block;
    background: white;
    color: red;
    font-weight: bold;
    padding: 1px 6px;
    border-radius: 8px;
    margin-right: 5px;
    font-size: 14px;
}

/* Кнопка */
.banner-link {
    display: inline-block;
    padding: 6px 12px;
    background: white;
    border-radius: 18px;
    font-weight: bold;
    text-decoration: none;
    color: red;
    font-size: 12px;
    border: 2px solid white;
    transition: 0.2s;
    text-align: center;
    line-height: 1.1;
    white-space: nowrap;
    margin-left: 10px;
}

.banner-link:hover {
    background: #ffecec;
}

/* Крестик */
.banner-close {
    position: absolute;
    top: 3px;
    right: 8px;
    cursor: pointer;
    font-size: 18px;
}
