* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #E9EAEB;
    font-family: 'Synchrony Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding: 20px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    outline: none;
    border: none;
}

.card:hover, .card:focus, .card:focus-visible, .card:active {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    outline: none !important;
    border: none !important;
    text-decoration: none !important;
}

html body a.card, html body a.card:hover, html body a.card:focus, html body a.card:focus-visible, html body a.card:active {
    outline: none !important;
    border: none !important;
    box-shadow: none;
    text-decoration: none !important;
}

html body a.card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
}

.card-date {
    color: #3B3C43;
    font-size: 10px;
    font-family: 'Synchrony Sans', sans-serif;
    font-weight: 700;
    line-height: 15px;
    word-wrap: break-word;
    margin-bottom: 12px;
}

.card-title {
    color: #3B3C43;
    font-size: 16px;
    font-family: 'Synchrony Sans', sans-serif;
    font-weight: 400;
    line-height: 24px;
    word-wrap: break-word;
    cursor: pointer;
    transition: border-bottom 0.2s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    border-bottom: 2px solid transparent;
}

.card:hover .card-title {
    border-bottom: 2px solid #222;
}

/* Responsive Design */
/* Tablet - 3 columns */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

/* Small Tablet - 2 columns */
@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    body {
        padding: 16px;
    }

    .card {
        padding: 16px;
    }
}

/* Mobile - 1 column */
@media (max-width: 480px) {
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    body {
        padding: 12px;
    }

    .card {
        padding: 12px;
    }

    .card-title {
        font-size: 14px;
        line-height: 20px;
    }

    .card-date {
        font-size: 9px;
    }
}

h1 {
    color: #3B3C43;
    font-size: 24px;
    font-weight: 600;
}

.loading {
    text-align: center;
    padding: 40px;
    color: #3B3C43;
    font-size: 16px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination button, .pagination a {
    padding: 10px 12px;
    border: 1px solid #ccc;
    background-color: white;
    color: #3B3C43;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Synchrony Sans', sans-serif;
    font-size: 14px;
    transition: all 0.2s ease;
}

.pagination button:hover, .pagination a:hover {
    background-color: #3B3C43;
    color: white;
}

.pagination .active {
    background-color: #3B3C43;
    color: white;
    border-color: #3B3C43;
}

.pagination button:disabled, .pagination a.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination button:disabled:hover, .pagination a.disabled:hover {
    background-color: white;
    color: #3B3C43;
}

.page-info {
    text-align: left;
    color: #3B3C43;
    font-size: 12px;
    margin-top: 20px;
}

.error {
    text-align: center;
    padding: 40px;
    color: #d32f2f;
    font-size: 16px;
}
.text-header p{
	text-align:left;
	font-size:16px;
	margin:0px;
}
        