/* =========================================
   Structural Rack Section
========================================= */

.structural-rack-section {
    width: 100%;
    padding: 35px 0;
    background: #ffffff;
}

/* .structural-rack-section .structural-rack-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
} */

/* =========================================
   Content
========================================= */

.structural-rack-section .structural-rack-content {}

.structural-rack-section .structural-rack-content p {
    margin: 0 0 18px;
    color: #151515;
    font-size: 17px;
    line-height: 1.42;
    font-weight: 400;
    letter-spacing: 0.05px;
}

.structural-rack-section .structural-rack-content p:last-child {
    margin-bottom: 0;
}

.structural-rack-section .structural-rack-content strong {
    font-weight: 700;
}

/* =========================================
   Links
========================================= */

.structural-rack-section .rack-link {
    color: #f0c400;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color 0.3s ease;
}

.structural-rack-section .rack-link:hover {
    color: #d49f00;
}

.structural-rack-section .mobile-break {
    display: none;
}

/* =========================================
   Image
========================================= */

.structural-rack-section .structural-rack-image {
    width: 350px;
    margin: auto;
}

.structural-rack-section .structural-rack-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* =========================================
   Tablet
========================================= */

@media (min-width:768px) and (max-width: 991.98px) {
    .structural-rack-section {
        padding: 50px 0;
    }

    .structural-rack-section .structural-rack-content p {
        font-size: 15px;
        line-height: 1.5;
    }
}

/* =========================================
   Mobile
========================================= */

@media (min-width:576px) and (max-width: 767.98px) {
    .structural-rack-section {
        padding: 40px 0;
    }

    .structural-rack-section .structural-rack-content p {
        font-size: 15px;
        line-height: 1.55;
        margin-bottom: 20px;
    }

    .structural-rack-section .structural-rack-image {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .structural-rack-section .mobile-break {
        display: inline;
    }
}

/* =========================================
   Small Mobile
========================================= */

@media (min-width:0px) and (max-width: 575.98px) {
    .structural-rack-section {
        padding: 30px 0;
    }

    .structural-rack-section .structural-rack-content p {
        font-size: 14px;
        line-height: 1.55;
    }

    .structural-rack-section .structural-rack-image img {}

    .structural-rack-section .structural-rack-image {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}