#toggleOtherTechnologies {
    cursor: pointer;
}

html[lang="ar"] #otherTechnologyToggleChevron {
    rotate: 180deg;
}

#otherTechnologyToggleChevron {
    rotate: 0deg;
    transition: rotate 200ms ease-in-out;
}

.primary-card {
    height: 78px;
    background-color: var(--secondary-background-color);
    border-radius: 4px;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 5%);

    display: flex;
    gap: 16px;
    padding: 12px 10px;

    flex: 1;
}

.current-technologies {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 18px;
}

.current-technology-title {
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 4px;
}

.current-technology-subtitle {
    font-size: 10px;
    color: var(--secondary-text-color);
}

html.dark .current-technology-subtitle {
    color: rgba(var(--secondary-text-color-rgb), 70%);
}


.other-technologies {
    display: flex;
    gap: 8px;
    padding: 6px 5px;
    border-radius: 4px;

    background-color: var(--secondary-background-color);
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 5%);
    flex: 1;
}

.other-technology-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.other-technology-subtitle {
    font-size: 10px;
    font-weight: 500;
    color: var(--secondary-text-color);
}

@media screen and (max-width: 1200px) {

    .current-technologies {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media screen and (max-width: 900px) {
    .current-technologies {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 500px) {
    .current-technologies {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

@media screen and (max-width: 270px) {
    .current-technology-title {
        font-size: 12px;
        font-weight: 700;
    }

    .current-technology-subtitle {
        font-size: 8px;
        color: var(--secondary-text-color);
    }

}