

.country-container {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: var(--reroof-bdr-color);
    min-height: 100vh;
    /* color: #ddd; */
}

.country-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1400px;
}

.country-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.country-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.country-card img {
    width: 100%;
    height: 150px;
    object-fit: fill;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.country-title {
    padding: 15px;
    /* font-size: 18px; */
    font-weight: 600;
    text-transform: uppercase;
    color: #000000;
    letter-spacing: 1px;
    margin: 0;
    font-size: large;
}

@media (max-width: 768px) {
    .country-list {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}

@media (max-width: 480px) {
    .country-title {
        font-size: 16px;
    }
}
