:root {
    --oe-bg-card-content: #ffffff;
    --oe-text-light: #ffffff;
    --oe-text-dark: #1A1A1A;
    --oe-text-subtitle: #6B7280;
    --color-gray-400: #999999;
}

.our-experience {
    background-color: var(--color-body-bg);
    padding: max(80px, 6.25vw) 0;
    width: 100%;
    color: var(--oe-text-light);
}

.our-experience__container {
    width: 100%;
}

.our-experience__subtitle {
    font-size: max(14px, 0.833vw);
    line-height: 1.5;
    color: var(--oe-text-subtitle);
    margin: 0 0 max(30px, 2.5vw) 0;
}

.our-experience__grid {
    display: flex;
    flex-direction: column;
    gap: max(20px, 1.667vw);
    align-items: stretch;
    justify-content: space-between;
}

.our-experience__card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    gap: max(16px, 1.042vw);
    background-color: var(--oe-bg-card-content);
}

.our-experience__card-img-wrapper {
    width: 100%;
    aspect-ratio: 97 / 45;
    overflow: hidden;
}

.our-experience__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    transition: transform .5s;
}

.our-experience__card-content {
    padding: 0 max(16px, 1.302vw) max(16px, 1.302vw);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: max(8px, 0.417vw);
}

.our-experience__card-category {
    font-size: max(11px, 0.573vw);
    font-weight: 400;
    text-transform: uppercase;
    color: var(--color-gray-400);
    letter-spacing: 1px;
}

.our-experience__card-title {
    font-size: max(18px, 0.938vw);
    line-height: 1.5;
    font-weight: 700;
    color: var(--oe-text-dark);
}

.our-experience__card-text {
    font-size: max(13px, 0.729vw);
    line-height: 1.45;
    color: var(--color-gray-600);
    margin: 0;
}

.our-experience__card:hover .our-experience__card-img {
    transform: scale(1.05);
}

@media (min-width: 48.01rem) {
    .our-experience__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .our-experience__card-img-wrapper {
        aspect-ratio: 16 / 9;
    }

    .our-experience__card-text {
        max-width: 39ch;
    }
}

@media (min-width: 84rem) {
    .our-experience {
        padding-bottom: max(34px, 1.771vw);
    }
}