.destinations-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}
.taxonomy-title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}
.taxonomy-intro {
    text-align: center;
    margin-bottom: 40px;
}
.taxonomy-intro h6 {
    font-size: 1.2rem;
    font-weight: normal;
    margin-bottom: 15px;
    word-wrap: break-word;
}
.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.destination-item {
    display: block;
    padding: 5px;
    text-align: left;
    text-decoration: none;
    color: inherit;
    transition: none;
}
.destination-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.destination-flag {
    width: 40px;
    height: auto;
    margin-bottom: 10px;
    pointer-events: none;
    user-select: none;
}
.destination-name {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    margin: 0;
}
.destination-item:hover .destination-name {
    color: var(--primary-color);
}
@media (max-width: 768px) {
    .destination-item {
        margin-bottom: 20px;
    }
}