/* Base styles */
.website-display-page-fragment-with-notice-container {
    display: flex;
    flex-direction: row;
    padding: 20px;
    background-color: #f9f9f9;
    flex-wrap: wrap;
}

.website-display-page-fragment-with-notice-content {
    flex: 1;
    padding: 20px;
    background-color: white;
    margin-bottom: 20px;
}

.website-display-page-fragment-with-notice-image-container {
    width: 100%;
    margin-bottom: 20px;
}

.website-display-page-fragment-with-notice-fullwidth-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.website-display-page-fragment-with-notice-text {
    text-align: left;
}

.website-display-page-fragment-with-notice-text h1 {
    font-size: 20px;
    margin-bottom: 20px;
}

.website-display-page-fragment-with-notice-text p {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.website-display-page-fragment-with-notice-secondary-text {
    color: gray;
    font-size: 14px;
}

.website-display-page-fragment-with-notice-notices {
    flex: 0 1 250px;
    background-color: white;
    padding: 20px;
}

.website-display-page-fragment-with-notice-notices h2 {
    margin-bottom: 20px;
    font-size: 16px;
}

.website-display-page-fragment-with-notice-notices ul {
    list-style: none;
    padding: 0;
}

.website-display-page-fragment-with-notice-notices li {
    margin-bottom: 20px;
}

.website-display-page-fragment-with-notice-notice-card {
    display: flex;
    align-items: center;
    border: 1px solid #444444;
    padding: 15px;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.website-display-page-fragment-with-notice-notice-card:hover {
    background-color: #e8e8e8;
}

.website-display-page-fragment-with-notice-notice-image-container {
    flex: 0 0 70px;
    margin-right: 15px;
}

.website-display-page-fragment-with-notice-notice-image {
    width: 70px;
    height: 70px;
    border-radius: 5px;
    object-fit: cover;
}

.website-display-page-fragment-with-notice-notice-text {
    flex: 1;
    text-align: left;
}

.website-display-page-fragment-with-notice-notices a {
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
    font-size: 16px;
    display: block;
}

.website-display-page-fragment-with-notice-notices a:hover {
    text-decoration: underline;
}

.website-display-page-fragment-with-notice-notices p {
    margin: 0;
    font-size: 16px;
    color: gray;
}

.website-display-page-fragment-with-notice-more-button {
    display: block;
    margin-top: 20px;
    padding: 12px;
    background-color: #fb923c;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.website-display-page-fragment-with-notice-more-button:hover {
    background-color: #ea580c;
}

/* Mobile styles */
@media (max-width: 1000px) {
    .website-display-page-fragment-with-notice-container {
        flex-direction: column !important;
        padding: 10px;
    }

    .website-display-page-fragment-with-notice-notices {
        width: 100%;
        padding: 10px;
    }

    .website-display-page-fragment-with-notice-content {
        padding: 10px;
    }

    .website-display-page-fragment-with-notice-notice-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .website-display-page-fragment-with-notice-notice-image-container {
        margin-bottom: 10px;
    }

    .website-display-page-fragment-with-notice-notice-text a {
        font-size: 16px;
    }
}
