.saana-notices {
    position: fixed;
    right: 6.5vw;
    bottom: 26px;
    z-index: 9998;
    width: min(380px, calc(100vw - 32px));
    max-height: calc(100vh - 52px);
    overflow: auto;
    box-sizing: border-box;
    padding: 30px 32px 28px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 22px rgba(0, 0, 0, .16);
    color: #333;
}

.saana-notices__close {
    position: absolute;
    top: 13px;
    right: 15px;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.saana-notices__close::before,
.saana-notices__close::after {
    content: "";
    position: absolute;
    left: 13px;
    top: 5px;
    width: 1px;
    height: 18px;
    background: #4c4c4c;
}

.saana-notices__close::before { transform: rotate(45deg); }
.saana-notices__close::after  { transform: rotate(-45deg); }

.saana-notices__section + .saana-notices__section {
    margin-top: 26px;
}

.saana-notices__title {
    margin: 0 34px 19px 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    color: #2e2e2e;
}

.saana-notices__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.saana-notice {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 19px;
    align-items: stretch;
    min-height: 116px;
}

.saana-notice + .saana-notice {
    margin-top: 1px;
}

.saana-notice__image-wrap {
    width: 108px;
    height: 116px;
    overflow: hidden;
    border-radius: 12px;
    background: #f3f3f3;
}

.saana-notice__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.saana-notice__content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 8px 0 2px;
}

.saana-notice__heading {
    margin: 0 0 5px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    color: #333;
}

.saana-notice__text {
    margin: 0 0 11px;
    font-size: 11px;
    line-height: 1.35;
    color: #3d3d3d;
}

.saana-notice__link {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #777;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #d86731;
    text-decoration: none;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 500;
}

.saana-notice__link:hover,
.saana-notice__link:focus {
    color: #b84d1b;
    text-decoration: none;
}

.saana-notice__arrow {
    font-size: 19px;
    line-height: 1;
    transition: transform .18s ease;
}

.saana-notice__link:hover .saana-notice__arrow,
.saana-notice__link:focus .saana-notice__arrow {
    transform: translateX(3px);
}

@media (max-width: 782px) {
    .saana-notices {
        right: 16px;
        left: 16px;
        bottom: 16px;
        width: auto;
        max-height: min(72vh, 620px);
        padding: 26px 22px 22px;
    }

    .saana-notices__title {
        font-size: 17px;
    }

    .saana-notice {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 15px;
        min-height: 104px;
    }

    .saana-notice__image-wrap {
        width: 96px;
        height: 104px;
    }
}

@media (max-width: 430px) {
    .saana-notices {
        padding-left: 18px;
        padding-right: 18px;
    }

    .saana-notice {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 12px;
        min-height: 94px;
    }

    .saana-notice__image-wrap {
        width: 82px;
        height: 94px;
    }
}
