/* ===================================
   CALMAROI NEWS SECTION STYLES
   =================================== */

/* News Grid Layout */
.calmaroi-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0;
    margin: 0;
    margin-bottom: 24px;
}

/* News Card Styling */
.news-card {
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.25s;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.15);
}

/* Farbschema für die drei Karten */
.news-card:nth-child(1) {
    background-color: #F5F0E6; /* Beige */
}

.news-card:nth-child(2) {
    background-color: #EAFF00; /* Helleres Gelb-Grün */
}

.news-card:nth-child(3) {
    background-color: #E8F5E8; /* Hellgrün */
}

/* News Date */
.news-date {
    color: var(--e-global-color-secondary, #935D3F);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* News Title */
.news-title {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
}

.news-title a {
    color: var(--e-global-color-secondary, #935D3F);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.news-title a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* News Excerpt */
.news-excerpt {
    color: #333;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 25px;
    font-size: 14px;
}

/* Read More Link */
.news-link {
    color: var(--e-global-color-secondary, #935D3F);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.news-link:hover {
    text-decoration: underline;
    transform: translateX(5px);
}

/* News Section Überschrift */
.news-section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 32px;
    margin-top: 32px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .calmaroi-news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .calmaroi-news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-section-title {
        font-size: 36px;
    }
    
    .news-card {
        padding: 30px 20px;
    }
    
    .news-title {
        font-size: 16px;
    }
    
    .news-excerpt {
        font-size: 13px;
    }
}

/* Hover-Effekt für Desktop */
@media (min-width: 1025px) {
    .news-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.25);
        z-index: 10;
    }
}