/* MAIN WRAPPER */
.notice-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

/* IMAGE */
.notice-image {
    max-width: 160px;
    height: auto;
    flex-shrink: 0;
    border-radius: 15px;
}

/* MESSAGE BOX */
.notice-box {
    background-color: #abdcdd;
    border-radius: 15px;
    padding: 3px 20px;
    flex: 1;
}

/* TITLE */
.notice-title {
    font-size: larger;
    color: crimson;
}

/* SMALL TRIANGLE */
.notice-arrow {
    font-size: 0.75em;
}

/* NORMAL TRIANGLE (right side) */
.notice-arrow-large {
    font-size: 1em;
}

/* BOTTOM ROW */
.notice-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* enables mobile wrap */
    margin-top: 0px;
}

/* LEFT SIDE OF BOTTOM ROW */
.notice-left {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 200px; /* prevents premature wrapping */
}

/* RIGHT SIDE OF BOTTOM ROW */
.notice-right {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0; /* keeps right side on same line until wrap is needed */
}

/* LINK */
.notice-link {
    font-weight: bold;
    text-decoration: none;
}

/* MOBILE (optional further enhancement) */
@media (max-width: 500px) {
    .notice-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .notice-right {
        margin-top: 5px;
        justify-content: flex-start;
    }
}