

.news-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    width: 90%;
    max-width: 1200px;
    }
    .news-item {
    border-radius: 3px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    }
    .news-item a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    }
    .news-item .image-container.fixed-aspect.aspect-1-1 {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    }
    .news-item .image-container .image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    }
    .news-item .image-container img.cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px 3px 0 0;
    }
    .news-item .text-container {
    padding: 15px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    }
    .news-item .news-time {
    font-size: 0.8em;
    color: #004862;
    margin-bottom: 5px;
    display: block;
    }
    .news-item .news-category {
    font-size: 0.75em;
    font-weight: 600;
    color: #42ACD1;
    background-color: rgba(66, 172, 209, 0.1);
    padding: 3px 8px;
    border-radius: 3px;
    margin-bottom: 10px;
    align-self: flex-start;
    text-transform: uppercase;
    }
    .news-item .news-title {
    font-size: 1.1em;
    font-weight: 600;
    color: #004862;
    line-height: 1.4;
    margin: 0;
    flex-grow: 1;
    }
    @media (max-width: 768px) {
    .news-list {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    width: 95%;
    }
    }
    .sec-news-detail {
    width: 90%;
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 3px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    }
    .news-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    }
    .news-header .news-time {
    font-size: 0.9em;
    color: #004862;
    margin-bottom: 8px;
    }
    .news-header .news-title {
    font-size: 1.2em;
    font-weight: 600;
    color: #004862;
    line-height: 1.3;
    }
    .news-body {
    font-size: 1em;
    line-height: 1.8;
    color:#004862;
    }
    .news-body img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 3px;
    display: block;
    }
    .news-body p {
    margin-bottom: 1.2em;
    }
    .news-body div[style*="background:#ededed"] {
    padding: 15px !important;
    font-size: 0.9em;
    margin-bottom: 25px !important;
    }
    .news-section .anim-on-scroll.animate__fadeInUp {
    --animate-duration: 1.8s;
    }
    .news-section > .section-title-large.anim-on-scroll.animate__fadeInUp {
    --animate-delay: 0s;
    }
    .news-section > .section-subtitle-large.anim-on-scroll.animate__fadeInUp {
    --animate-delay: 0.1s;
    }
    .news-section .reservation-button.anim-on-scroll.animate__fadeInUp {
    --animate-delay: 0.3s;
    }
    .sec-news-detail.anim-on-scroll.animate__fadeInUp {
    --animate-delay: 0.2s;
    }
    .news-section .center.anim-on-scroll:nth-of-type(1) {
    --animate-delay: 0.3s;
    }
    .news-section .center.anim-on-scroll:nth-of-type(2) {
    --animate-delay: 0.4s;
    }
    }