.two-col-detail {
    --dimgray: #5d606a;
    --orange: #d24846;
    --lightblue: #5eaadb;
    --black: #333333;

    padding: 32px 15px 15px;
    max-width: 500px;
    margin: 0 auto 45px;
}

.two-col-detail h1.main-title {
    color: var(--navy);
    font-family: var(--font-display);
    font-style: normal;
    font-weight: var(--font-weight-bold);
    font-size: 2.125rem;
    line-height: 1.294;
    margin-bottom: 0.7em;
    position: relative;
}

.two-col-detail h1.main-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: -34px;
    height: 2px;
    width: 78px;
    background-color: #9FD9DD;
}

.two-col-detail .img-cont img {
    width: 100%;
}

.two-col-detail .left-col {
    margin-bottom: 30px;
}

.two-col-detail .icon {
    width: 40px;
    margin-bottom: 15px;
}

.two-col-detail .right-col .inner-content p,
.two-col-detail .right-col .inner-content ul,
.two-col-detail .right-col .inner-content ol {
    color: var(--dimgray);
    margin-bottom: 20px;
}

.two-col-detail .right-col .inner-content h1,
.two-col-detail .right-col .inner-content h2,
.two-col-detail .right-col .inner-content h3,
.two-col-detail .right-col .inner-content h4,
.two-col-detail .right-col .inner-content h5,
.two-col-detail .right-col .inner-content h6 {
    font-family: var(--font-display-2);
    color: var(--orange);
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 12px;
}

.two-col-detail .right-col .view-all {
    color: white;
    text-transform: uppercase;
    padding: 5px 10px;
    background-color: var(--lightblue);
    font-size: 14px;
}

.two-col-detail .right-col .bottom-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

.two-col-detail .right-col .bottom-section > div {
    margin-right: auto;
    margin-left: 25px;
}

.two-col-detail .right-col .bottom-section .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid var(--black);
    border-radius: 100%;
    color: var(--black);
}

@media (min-width: 800px) {
    .two-col-detail {
        max-width: var(--width-base);
    }

    .two-col-detail .inner-panel {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .two-col-detail .left-col {
        margin: 0;
    }

    .two-col-detail .right-col {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: 25px;
        max-width: 525px;
    }
}

@media (min-width: 1025px) {
    .two-col-detail .right-col {
        padding-left: 40px;
    }

    .two-col-detail .right-col .inner-content h1,
    .two-col-detail .right-col .inner-content h2,
    .two-col-detail .right-col .inner-content h3,
    .two-col-detail .right-col .inner-content h4,
    .two-col-detail .right-col .inner-content h5,
    .two-col-detail .right-col .inner-content h6 {
        font-size: 40px;
        line-height: 44px;
    }

    .two-col-detail .right-col .inner-content p, 
    .two-col-detail .right-col .inner-content ul, 
    .two-col-detail .right-col .inner-content ol {
        font-size: 19px;
    }
}

@media (min-width: 1200px) {
    .two-col-detail h1.main-title {
        font-size: 66px;
        line-height: 70px;
    }
}