.akh-notice {
    --akh-notice-container: var(--ak-container, 1320px);
    --akh-notice-accent: var(--ak-ui-orange, #f58220);
    width: 100%;
    padding: 0 18px;
    margin: 18px auto 0;
    box-sizing: border-box;
}

.akh-notice__inner {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: var(--akh-notice-container);
    margin: 0 auto;
    padding: 18px 22px;
    border: 1px solid rgba(245, 130, 32, .24);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 248, 240, .96), rgba(255, 255, 255, .98));
    box-shadow: 0 12px 28px rgba(27, 31, 35, .06);
    color: #23262d;
    box-sizing: border-box;
}

.akh-notice__marker {
    flex: 0 0 auto;
    width: 10px;
    min-height: 54px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--akh-notice-accent), rgba(245, 130, 32, .42));
}

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

.akh-notice__title {
    margin: 0 0 5px;
    color: #1c2027;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
}

.akh-notice__text,
.akh-notice__note {
    margin: 0;
    color: #30343b;
    font-size: 15px;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.akh-notice__note {
    margin-top: 3px;
    color: #5b616b;
}

@media (min-width: 768px) {
    .akh-notice--hide-desktop {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    .akh-notice {
        padding: 0 14px;
        margin-top: 14px;
    }

    .akh-notice__inner {
        gap: 11px;
        padding: 15px 16px;
        border-radius: 20px;
    }

    .akh-notice__marker {
        width: 8px;
        min-height: 48px;
    }

    .akh-notice__title {
        font-size: 16px;
    }

    .akh-notice__text,
    .akh-notice__note {
        font-size: 14px;
    }

    .akh-notice--hide-mobile {
        display: none !important;
    }
}

