﻿/*
//-----------------------------------------------------------------------
// <copyright file="mslp-card.css" company="Federal Reserve Bank of Boston">
//     © 2024 Federal Reserve Bank of Boston
// </copyright>
// <summary>This is the mslp-card.css file.
//          used with Featured-card.css 
//</summary>
//-----------------------------------------------------------------------
// Internal FR – Source Code
*/
/* ReSharper disable UnknownCssVendorExtension */
/* ReSharper disable CssBrowserCompatibility */

.mslp-card {
    height: 140px;
    font-weight: 400;
}

.mslp-card .mslp-card-caption {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    height: 100%;
}

.mslp-card .mslp-card-content-wrapper {
    max-width: 100%;
}

.mslp-card .mslp-card-title {
    color: #003a5d;
    font-size: 18px;
    line-height: 26px;
}

.mslp-card .mslp-card-summary {
    color: #6ba2b9;
    font-size: 15px;
    line-height: 21px;
    margin-top: 7px;
}

.mslp-card .mslp-card-img-wrapper {
    height: 140px;
    display: inline-block;
    overflow: hidden;
    position: relative;
    padding: 0;
    width: 33%;
}

 .mslp-card .mslp-card-img-wrapper .focuspoint img {
        position: absolute;
        max-width: none;
        min-height: 100%;
    }

/* breakpoints */
@media (min-width: 320px) {
    .mslp-card .mslp-card-img-wrapper {
        height: 100%;
        display: inline-block;
        overflow: hidden;
        position: relative;
        width: 33%;
    }

}

@media (min-width: 768px) {
    .mslp-card .mslp-card-img-wrapper {
        float: left;
    }

    .mslp-card-caption.col-md-8 {
        position: absolute;
    }

}

@media (min-width: 992px) {
    .mslp-card-caption.col-md-8 {
        position: relative;
    }
}

@media (min-width: 1200px) {
    /* Large Desktop Styles */
}
