.sdh-notices {
    display: grid;
    gap: 18px;
    margin: 20px 0;
}

.sdh-notices--card {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.sdh-notices--banner,
.sdh-notices--list {
    grid-template-columns: 1fr;
}

.sdh-notice {
    align-items: flex-start;
    background: var(--sdh-notice-bg, #135e96);
    border-radius: 14px;
    color: var(--sdh-notice-color, #fff);
    display: flex;
    gap: 16px;
    overflow: hidden;
    padding: 18px 20px;
}

.sdh-notice--banner {
    align-items: center;
}

.sdh-notice--list {
    border-left: 6px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 14px 16px;
}

.sdh-notice__media {
    flex: 0 0 auto;
}

.sdh-notice__image {
    border-radius: 10px;
    display: block;
    height: auto;
    max-width: 110px;
}

.sdh-notice__icon {
    font-size: 36px;
    height: 36px;
    width: 36px;
}

.sdh-notice__content {
    min-width: 0;
}

.sdh-notice__title,
.sdh-notice__short,
.sdh-notice__long > :first-child {
    margin-top: 0;
}

.sdh-notice__title {
    color: inherit;
    font-size: 1.2rem;
    line-height: 1.25;
    margin-bottom: 8px;
}

.sdh-notice__short {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.sdh-notice__long,
.sdh-notice__long p,
.sdh-notice__short {
    color: inherit;
}

.sdh-notice__long p:last-child {
    margin-bottom: 0;
}

.sdh-notice-empty {
    background: #f6f7f7;
    border: 1px solid #dcdcde;
    border-radius: 8px;
    margin: 20px 0;
    padding: 14px 16px;
}

@media (max-width: 640px) {
    .sdh-notice,
    .sdh-notice--banner {
        flex-direction: column;
    }

    .sdh-notice__image {
        max-width: 100%;
    }
}
