:root {
    --ut-orange: #FF8200; 
    --ut-blue: #00263E;   
    --ut-light-blue: #004b7a;
    --ut-green: #4a773c;
    --text-dark: #333;
    --bg-light: #f4f4f4;
    --ut-smokey: #58595B; 
    --ut-light-grey: #F6F6F6;
    --text-main: #333333;
    --border: #E0E0E0;
    --light-bg: #F9F7F2;
    --slate: #333d47;
    --subText: #4f4f4fda;
}



.fresh-field {
    padding: 3rem 0; /* 6rem 0 8rem; */
    
}

.fresh-field .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0px;
    position: relative;
    justify-items: center;
    
    border-radius: 10px;
}

.fresh-field .section-header {
    text-align: center;
    width: 100%;
    background-color: var(--slate);
    color: white;
    padding: 30px;
    border-radius: 15px 15px 0 0;
}

.fresh-field .section-title {
    font-size: 2.2rem;
    font-weight: 600;
    padding: 0px;
    margin: 0px;
    /* background-color: var(--slate); */
    color: white;
}

.fresh-field .subtitle {
    font-size: 1.4rem;
    margin: 5px auto;
    line-height: 1.2;
    color: #ffffffc9;
    font-weight: 400;
}

.pub-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 50px 40px 80px 40px;
    border: 2px solid var(--ut-orange);
    border-top: none;
    border-radius: 0 0 15px 15px;
}

.pub-link {
    text-decoration: none;
    border-bottom: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.pub-link:hover {
    text-decoration: none;
    border-bottom: none;
    transform: scale(1.025);
}

a.pub-link:visited {
    text-decoration: none;
}

.pub-card {
    background: #e1e1e1;
    padding-bottom: 5px;
    border-radius: 10px;
    position: relative;
}
.show-1150-1040 {
    display: none;
}

.fresh-field-img {
    width: 100%;
    /* max-width: 300px; */
    max-height: 275px !important;
    border-radius: 10px 10px 0 0;
    display: block;
    /* aspect-ratio: 6 / 7; */
    object-position: center;
    background-color: #919191;
    object-fit: contain;
}

.card-meta {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 5px 0; 
    width: 100%;
}

.flex-1 {
    flex: 1;
}

.pub-label {
    color: var(--ut-smokey);
    font-size: 1rem;
    font-weight: 400;
    padding: 0 15px;
}

.pub-card h3 {
    padding: 0 15px;
    margin: 5px 0;
    font-size: 1.2rem;
    line-height: normal;
    text-transform: none;
}

.center-btn {
    position: absolute;
    bottom: 0; 
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 10;
}


.btn-secondary2 {
    background-color: var(--slate);
    color: white;
    padding: 10px 40px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border-radius: 10px;
    border: none;
    font-size: 1.2rem;
    display: inline-block; 
    text-decoration: none; 
    text-align: center;
}

.btn-secondary2:hover {
    transform: scale(1.05);
}

a.btn-secondary2:visited {
    color: white !important;
    text-decoration: none;
}

.solutionsRibbon {
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
    width: 80px;
    height: 80px;
    text-align: right;
    z-index: 2;
}

.solutionsRibbon span {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    line-height: 25px;
    transform: rotate(45deg);
    width: 125px;
    display: block;
    background: #333d47;
    /* box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1); */
    position: absolute;
    top: 15px;
    right: -35px;
}

.solutionsRibbon::before,
.solutionsRibbon::after {
    content: "";
    position: absolute;
    z-index: -1;
    border: none !important;
}

.solutionsRibbon::before {
    top: 0;
    left: 0;
    border-top: 3px solid #333d47;
    border-left: 3px solid #333d47;
}

.solutionsRibbon::after {
    bottom: 0;
    right: 0;
    border-bottom: 3px solid #333d47;
    border-right: 3px solid #333d47;
}

@media screen and (min-width: 1600px), (max-width: 2300px) { }

@media screen and (max-width: 2100px) { }

@media screen and (min-width: 1801px), (max-width: 2099px) { }

@media screen and (max-width: 1800px) { }

@media screen and (max-width: 1650px) { }

@media screen and (max-width: 1500px) { }

@media screen and (max-width: 1400px) {
    .fresh-field .container {
        width: 100%;
    }

    .pub-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 300px));
        gap: 20px;
        padding: 50px 10px 80px 10px;
        width: 100%;
        justify-content: center;
    }

    .show-1150-1040 {
        display: block;
    }
}

@media screen and (max-width: 1150px) { }

@media (max-width: 1087px) {
    .show-1150-1040 {
        display: none;
    }
}

@media (max-width: 950px) {
    .pub-grid { gap: 30px; }
}

@media (max-width: 760px) {
    .pub-grid { 
        padding: 30px 10px 50px 10px;
        gap: 10px; }
}

@media (max-width: 550px) { 
    .fresh-field .section-title {
        font-size: 1.8rem;
    }
    .fresh-field .subtitle {
        font-size: 1.2rem;
    }
    .btn-secondary2 {
        padding: 10px 10px;
        width: 220px;
    }
}

@media (max-width: 399px) {
    .fresh-field .section-title {
        font-size: 1.4rem;
    }
    .fresh-field .subtitle {
        font-size: 1rem;
    }
    .btn-secondary2 {
        font-size: 1rem;
    }
}