<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * News Grid Styles
 */

/* Filter Tabs */
.sheehan-news-filters {
    margin-bottom: 60px;
    margin-top: 40px;
    text-align: center;
}

.sheehan-filter-tabs {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.sheehan-filter-tabs li {
    margin: 0;
    padding: 0;
}

.sheehan-filter-tabs li a {
    display: inline-block;
    padding: 12px 24px;
    color: white;
    text-decoration: none;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 22px;
    font-weight: 300;
    position: relative;
    transition: all 0.3s ease;
}

.sheehan-filter-tabs li a:hover {
    color: white;
}

.sheehan-filter-tabs li a.active {
    color: white;
}

.sheehan-filter-tabs li a.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #74b6e2;
}

@media (max-width: 768px) {
    .sheehan-filter-tabs {
        flex-direction: column;
    }
    
    .sheehan-filter-tabs li {
        margin-bottom: 15px;
    }
    
    .sheehan-filter-tabs li a {
        padding: 8px 16px;
        display: block;
    }
    
    .sheehan-filter-tabs li a.active:after {
        height: 2px;
        bottom: 0;
    }
}

/* Grid Layout */
.sheehan-news-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    font-family: "Montserrat", Arial, sans-serif;
}

@media (min-width: 640px) {
    .sheehan-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sheehan-news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Card Styles */
.sheehan-news-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sheehan-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.sheehan-news-card-title {
    font-size: 20px;
    font-weight: bold;
    color: #1F4963;
    margin-bottom: 16px;
    font-family: "Montserrat", Arial, sans-serif;
    line-height: 1.3;
}

.sheehan-news-card-excerpt {
    color: #374151;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
}

.sheehan-news-card-link {
    color: #19213F;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 24px;
    font-family: "Montserrat", Arial, sans-serif;
    transition: color 0.2s ease;
}

.sheehan-news-card-link:hover {
    color: #19213F;
    text-decoration: underline;
}

.sheehan-news-card-meta {
    font-size: 12px;
    color: #6b7280;
    border-top: 2px solid #87c3d2;
    padding-top: 24px;
    font-family: "Montserrat", Arial, sans-serif;
}

/* Load More Button */
.sheehan-load-more-container {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 60px;
    font-family: "Montserrat", Arial, sans-serif;
}

.sheehan-load-more-button {
    display: inline-block;
    background-color: #7ec3d3;
    color: white;
    padding: 10px 80px;
    min-width: 300px;
    text-decoration: none;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    cursor: pointer;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    transition: background-color 0.3s ease;
}

.sheehan-load-more-button:hover {
    background-color: #66b2c1;
    color: white;
}

.sheehan-load-more-button.loading {
    opacity: 0.7;
    cursor: not-allowed;
    background-color: #7ec3d3;
}

/* No Posts Message */
.sheehan-no-news {
    text-align: center;
    padding: 40px 0;
    grid-column: 1 / -1;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 18px;
    color: #6b7280;
} </pre></body></html>