/* Department site local asset stub (created by Department Site wizard) */

        @media only screen and (min-width: 960px){
            .person-wrapper {
                width: 37% !important;
            }	
        }
        /* CPOE Staff Profile Cards */
        .inner-wrapper {
            max-width: 1160px;
            margin: 0 auto;
        }
        .CPOE-profile-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            padding: 1rem;
        }
        .CPOE-profile-card {
            border: 1px solid #ddd;
            border-radius: 0rem;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            font-family: "Effra", "Effra W01", Helvetica, sans-serif;
        }
        .CPOE-profile-card img {
            width: 100%;
            height: 300px;
            object-fit: contain;
            object-position: center;
            padding: 10px;
            box-sizing: border-box;
            background-color: #f8f9fa;
        }
        .CPOE-profile-card-body {
            padding: 1rem;
            width: 100%;
            text-align: center;
            box-sizing: border-box;
        }
        .CPOE-profile-card-title {
            font-size: 18px;
            margin-top: 0;
            margin-bottom: 0;
            font-weight: bold;
        }
        p.CPOE-profile-card-text {
            margin: 8px 0;
        }
        .CPOE-profile-card-text span {
            display: block;
            margin-bottom: 6px; /* Adjust the margin as needed */
        }
        .CPOE-profile-card-text span:last-child {
            margin-bottom: 0; /* Remove margin from the last span to avoid extra space */
        }
        .CPOE-profile-title {
            color: #969696;
            font-size: 15px;
        }
        .CPOE-profile-contact {
            font-size: 13px;
        }
        .CPOE-profile-contact a {
            color: #900;
        }
        .CPOE-profile-contact a:hover {
            color: #969696;
        }
        @media (max-width: 768px) {
            .CPOE-profile-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 425px) {
            .CPOE-profile-container {
                grid-template-columns: repeat(1, 1fr);
            }
        }
    

