/*
Theme Name:		 Convertio Child
Theme URI:		 https://convertio.uicore.co/
Description:	 Child theme for Convertio - Conversion Optimized Landing Page Theme
Author:			 UiCore
Author URI:		 https://uicore.co
Template:		 convertio
Version:		 1.0.0
Text Domain:	 convertio
*/


/*
    /* Styles for the Member Directory Profile Card */
.member-card {
    position: relative;
    display: inline-block;
    width: 300px;
    height: 400px;
    margin: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.member-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.member-card .profile-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(70%);
    z-index: 1;
}

.member-card .info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.member-card:hover .info {
    opacity: 1;
    visibility: visible;
}

.member-card .info h3 {
    font-size: 1.5em;
    margin: 0;
}

.member-card .info .linkedin {
    margin: 10px 0;
}

.member-card .info .linkedin a {
    color: #0077b5;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
}

.member-card .info .skills {
    margin-top: 10px;
    font-size: 0.9em;
    line-height: 1.5;
}

*/