.steel-section {
    padding: 130px 0 155px;
}

.steel-layout {
    display: grid;
    gap:110px;
    align-items: center;
}

.steel-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 45px 0 55px;
}

.steel-title {
    margin: 0;
    font-size: var(--f48);
    font-weight: 700;
}

.steel-title::after {
    content: '';
    display: block;
    width:65px;
    height: 3px;
    margin-top: 30px;
    background: var(--gm-theme);
}

.steel-content {
    color: #666;
    font-size: var(--f16);
    line-height: 1.85;
       font-weight: 500;
       margin-top: 55px;
}

.steel-content p {
    margin: 0;
}

.steel-media {
    overflow: hidden;
    border-radius: 14px;
    background: #dfe5ea;
}

.steel-media img {
    display: block;
    width: 100%;
    object-fit: cover;
}


@media (min-width: 768px) {

    .steel-layout {
       grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

