.technical-card {
    background-color: #4a555e;
    padding: 2rem 3rem;
    font-family: sans-serif;
    color: white;
    border-radius: 1rem;
    position: relative;
}

.technical-card .photo {
    margin-bottom: 20px;
    padding: 1rem;
    display: grid;
    align-items: center;
}

.technical-card .photo img {
    max-width: 100%;
    border-radius: 1rem;
    max-height: 510px;
    margin-inline: auto;
}

.technical-card .card-title {
    margin-inline: auto;
    width: fit-content;
    max-width: 100%;
    background-color: #ff9f68;
    padding: 1rem 3rem;
    border-radius: 1rem;
    margin-bottom: 20px;
    text-align: center;
}

@media screen and (max-width: 576px) {
    .technical-card {
        padding: 1rem;
    }

    .technical-card .card-title {
        padding-inline: 1rem;
    }
}

.technical-card .card-title h2 {
    text-transform: uppercase;
    margin: 0;
    color: white;
    font-size: clamp(1.2rem, 2.8vw, 2.8rem);
    font-weight: 600;
    text-wrap-style: balance;
    max-width: 30ch;
    margin-inline: auto;
    line-height: 0.89;
}

.technical-card .section-box {
    background-color: #ff9f68;
    padding: 1rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
    color: white;
    margin-top: 60px;
    position: relative;
    font-weight: 500;
}

.technical-card .section-box::before {
    content: '';
    position: absolute;
    top: -35px;
    left: -10px;
    right: -10px;
    height: 10px;
    background: #ff9f68;
}