.mgm-notices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px 56px;
    width: 100%;
}

.mgm-notices__brand-title {
    margin: 0 0 12px;
    font-size: clamp(1.25rem, 1vw + 1rem, 1.7rem);
    line-height: 1.2;
}

.mgm-notices__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mgm-notices__item + .mgm-notices__item {
    margin-top: 8px;
}

.mgm-notices__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.mgm-notices__link:hover,
.mgm-notices__link:focus {
    text-decoration-thickness: 2px;
}

.mgm-notices-empty,
.mgm-notices__empty-brand {
    opacity: 0.75;
}

.mgm-notices__brand-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70px;
    margin-bottom: 18px;
}

.mgm-notices__brand-logo img {
    max-width: 150px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.mgm-notices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 400px));
    justify-content: center;
    gap: 32px;
    padding-left: 32px;
    padding-right: 32px;
}

.mgm-notices__brand {
    width: 100%;
    max-width: 400px;
    border: 1px solid #d9d9d9;
    border-radius: 18px;
    padding: 32px 28px;
    background: #ffffff;
    box-sizing: border-box;
}

.mgm-notices__brand-title {
    display: none;
}

.mgm-notices__brand-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
    margin-bottom: 24px;
}

.mgm-notices__brand-logo img {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.mgm-notices__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mgm-notices__item {
    margin-bottom: 10px;
    text-align: center;
}

.mgm-notices__item:last-child {
    margin-bottom: 0;
}

.mgm-notices__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: inherit;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.4;
}

.mgm-notices__link:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .mgm-notices {
        grid-template-columns: 1fr;
        padding-left: 20px;
        padding-right: 20px;
    }

    .mgm-notices__brand {
        max-width: 100%;
        padding: 28px 22px;
    }
}