﻿
#contentgridsection {
    padding: 50px 0;
}

    #contentgridsection .equal-height {
        display: flex;
        flex-wrap: wrap;
        row-gap: 40px;
        justify-content: space-between;
    }
    
        #contentgridsection .equal-height .column {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding-bottom:10px;
        }

    #contentgridsection h2 {
        font-size: 40px;
        font-weight:700;
        margin-top: 0;
        margin-bottom: 20px;
    }

    #contentgridsection a {
        color: #D14D13;
        font-weight: bold;
    }

        #contentgridsection a::after {
            content: "›"; /* Unicode character */
            font-size: 20px;
            margin-left: 5px;
        }

    #contentgridsection .link-item {
        display: flex;
        align-items: center;
        text-decoration: none;
        transition: border-color 0.2s;
        width: fit-content;
        line-height: 0.75;
        border-bottom: 1px solid transparent;
    }

        #contentgridsection .link-item:hover {
            border-bottom: 1px solid #D14D13;
        }
    #contentgridsection .link-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    #contentgridsection .cta-link {
        color: #d14d13;
        font-weight: bold;
    }
    #contentgridsection .link-item.blue {
        color: #3180cf;
        font-weight: bold;
    }
        #contentgridsection .link-item.blue:hover {
            border-bottom: 1px solid #3180cf;
        }
    #contentgridsection img {
        height: 300px;
        object-fit: cover;
        margin-top: 20px;
        border-radius: 10px;
    }

    #contentgridsection .m-auto {
        margin: auto;
    }

    #contentgridsection .mb-60 {
        margin-bottom: 60px;
    }

    #contentgridsection h3 {
        font-weight: bold;
        font-size: 20px;
    }

    #contentgridsection .description {
        font-size: 14px;
    }

    #contentgridsection .article-content {
        margin: 20px 0 40px;
    }

    #contentgridsection .card-item {
        background: white;
        padding: 0 20px 25px;
        border-radius: 20px;
        height: 100%;
        min-height:200px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

        #contentgridsection .card-item h3 {
            font-size: 18px;
            text-align:left;
        }


@media only screen and (max-width: 425px) {
    #contentgridsection .col-md-4 {
        width: 100%;
    }
}

.contentgrid-pager {
    margin-top: 30px;
}

#pager a {
    font-weight: 700;
    color: #D14D13;
    text-decoration: none;
    margin: 0 4px;
}

    #pager a:hover {
        text-decoration: underline;
    }

    #pager a.active {
        text-decoration: underline;
    }

    #pager a.disabled {
        pointer-events: none;
        opacity: .4;
    }

    #pager a::after {
        content: none !important;
    }

#pager a {
    font-size: 18px;
}

    #pager a.active {
        font-size: 20px;
    }