.page-title {
    text-align: center;
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 40px;
    color: #6b2d5c !important;
}

.announcement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px auto;
    padding: 0 20px;
}

.announcement-card {
    background-color: #fAf9f9;
    border: none;  
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 0 0 !important; 
    overflow: hidden; 
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column; 
    box-sizing: border-box; 
}

.announcement-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 200px; 
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.card-content {
    padding: 20px; 
    padding-bottom: 0;
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
    box-sizing: border-box; 
    border-bottom: 1px solid #eee;
}

.card-title {
    font-size: 1.15em;
    font-weight: 600;
    color: #333;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-text {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1; 
}

.card-footer {
    border-top: none; 
    padding: 0; 
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    margin-top: auto;
    width: 100%; 
    box-sizing: border-box;
}

.card-date {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    
    flex-grow: 0; 
    flex-shrink: 0;
    width: 60%; 
    
    padding: 15px 20px; 
    
    background-color: #444;
    color: #ccc;
    
    font-size: 0.9em; 
    font-weight: 500;
    
    border-radius: 0; 
    
    border-right: 1px solid #444; 
}

.read-more-btn {
    box-sizing: border-box; 
    
    display: flex; 
    align-items: center;
    justify-content: center;
    
    flex-grow: 0; 
    flex-shrink: 0;
    width: 40%; 
    
    background-color: #6B0544;
    color: white; 
    
    padding: 15px; 
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 600;
    
    border-radius: 0; 
    
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.read-more-btn:hover {
    background-color: #7a1f63; 
}