@media screen and (min-width: 0rem) {
    .service-hero {
        width: 100%;
        margin-top: 75px;
        position: relative;
    }

    .service-hero-content {
        position: absolute;
        z-index: 1;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .service-hero-content .eyebrow-text {
        color: #C5C287;
    }

    .eyebrow-text-image-left, .eyebrow-text-image-right {
        fill: #C5C287;
    }

    .service-hero-content .title {
        color: white;
    }


    .service-hero .hero-image-container {
        max-width: 100%;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        max-height: 400px;
        top: 0;
    }

    .service-hero .hero-image {
        min-width: 60rem;
        width: 100%;
        height: auto;
        position: relative;
        object-fit: cover;
        object-position: center center;
    }

    /* MERGERS & ACQUISITIONS */
    .service {
        padding-inline: 16px;
        margin-top: 60px;
        display: flex;
        max-width: 50rem;
        justify-content: center;
        width: 100%;
        margin-inline: auto;
    }

    .service .image {
        display: none;
        margin-top: 0px;
        border-radius: 8px;
    }

    .service .eyebrow-text-container {
        justify-content: start;
    }

    .service .title, .service .description {
        margin-left: 0px;
        padding-left: 0px;
        max-width: 100%;
    }

    .description {
        line-height: 150%;
    }

    .description h1, .description h2, .description h3, .description h4 {
        font-weight: bold;
        margin: 2rem 0 1rem;
    }

    .description p {
        line-height: 1.7;
         margin: 1rem 0;
    }

    .description ul, .description ol {
        margin-left: 2rem;
        line-height: 1.6;
    }

    .description code {
        background: #f5f5f5;
        padding: 0.2em 0.4em;
        border-radius: 4px;
    }

    .description pre {
      background: #1e1e1e;
      color: #fff;
      padding: 1rem;
      overflow-x: auto;
      border-radius: 6px;
    }

    .description blockquote {
      border-left: 4px solid #ccc;
      padding-left: 1rem;
      color: #555;
      font-style: italic;
    }

    .description hr {
        margin-top: 32px;
        
    }
    
}

@media screen and (min-width: 64rem) {
    .service-hero picture {
        width: 100%;
    }
    
    .service {
        max-width: 80rem;
        margin-top: 100px;
        gap: 48px;
        margin-inline: auto;
    }

    .service .service-content {
        width: 60%;
    }

    .service .image {
        display: inline;
        width: 100%;
    }
}