
.archive-title {
    font-size: 48px;
    color: #1F3044;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.archive-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.archive-card {
    border-radius: 8px;
    background: #ffffff;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.archive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.post-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.post-meta {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 10px;
}

.post-excerpt {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.pagination {
    display: flex;
    gap: 10px;
}

.archive-card {
    border-radius: 10px; 
    overflow: hidden; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.archive-card:hover {
    transform: translateY(-10px); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); 
}

.archive-card .post-thumbnail {
    height: 200px; 
    overflow: hidden; 
}

.archive-card .post-thumbnail img {
    object-fit: cover; 
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease; 
}

.archive-card:hover .post-thumbnail img {
    transform: scale(1.1); 
}

.archive-card .post-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    transition: color 0.3s ease;
}

.archive-card:hover .post-title {
    color: #007bff!important; 
}

.archive-card .post-meta {
    font-size: 0.875rem;
    color: #777;
}

.archive-card .btn {
    background-color: var(--lacivert);
    color: white;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.archive-card .btn:hover {
    background-color: var(--altin); 
}