.cal-article-list {
    margin: 40px 0;
}

.cal-article {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.cal-article:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.cal-thumbnail {
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 6px;
}

.cal-thumbnail a {
    display: block;
}

.cal-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cal-thumbnail img:hover {
    transform: scale(1.05);
}

.cal-title {
    margin: 0 0 12px 0;
    font-size: 1.25em;           /* Slightly smaller for better fit */
    line-height: 1.35;           /* Tighter but readable */
    flex-grow: 1;
    word-wrap: break-word;       /* Allows long words to break if needed */
    overflow-wrap: break-word;   /* Modern standard */
    hyphens: auto;               /* Adds hyphens where appropriate (good for English) */
}

.cal-title a {
    text-decoration: none;
    color: #1a1a1a;
}

.cal-title a:hover {
    color: #0073aa;
    text-decoration: underline;
}

.cal-excerpt {
    margin: 0 0 15px 0;
    color: #444;
    line-height: 1.6;
    font-size: 0.95em;
}

.cal-read-more {
    color: #0073aa;
    text-decoration: none;
    font-weight: bold;
    margin-top: auto;
    align-self: flex-start;
}

.cal-read-more:hover {
    text-decoration: underline;
}

.cal-layout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); /* Slightly wider min-width */
    gap: 30px;
}

/* Responsive */
@media (max-width: 1024px) {
    .cal-layout-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .cal-layout-grid {
        grid-template-columns: 1fr;
    }
    .cal-thumbnail img {
        height: 220px;
    }
    .cal-title {
        font-size: 1.35em;
    }
}