/* Custom styles for the cluster tabs */
.cluster-tabs__nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
}

.cluster-tabs__tab {
    flex: 1 1 0;
    min-width: 0;
    background-color: white;
    border: 1px solid #DBDBDB;
    border-bottom: none;
    padding: 1rem 1rem;
    font-family: Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #404040;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.3;
}

.cluster-tabs__tab:hover {
    background-color: #efefef;
}

.cluster-tabs__tab--active {
    background-color: #C07221;
    color: #ffffff;
}

.cluster-tabs__tab--active:hover {
    background-color: #a86119;
}

.cluster-tabs__content {
    display: none;
    background-color: #ffffff;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 10px 10px;
    border-top: 1px solid #C07221;
}

.cluster-tabs__content--active {
    display: block;
}

.cluster-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.cluster-icon {
    width: 35px;
    flex-shrink: 0;
}

.cluster-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #404040;
    margin: 0 0 1rem 0;
}

.cluster-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #404040;
    margin-bottom: 1.5rem;
}

.cluster-download {
    margin-top: 1rem;
}

.cluster-download__label {
    font-weight: 600;
    margin-right: 0.5rem;
}

.cluster-contact {
    margin-top: 1rem;
}

.cluster-contact__label {
    font-weight: 600;
    margin-right: 0.5rem;
}

/* Responsive adjustments for tablet and mobile */
@media (max-width: 996px) {
    .cluster-tabs__nav {
        flex-wrap: wrap;
    }

    .cluster-tabs__tab {
        flex: 1 1 100%;
        min-width: 0;
        font-size: 0.9rem;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid #DBDBDB;
    }

    .cluster-tabs__content {
        padding: 1.5rem;
    }

    .cluster-header {
        flex-direction: column;
    }
}
