/*
Theme Name: Nagarjuna Custom Child Theme
Theme URI: daakview.com
Description: A child theme for the Hello Elementor theme.
Author: Nagarjuna Putta
Author URI: https://daakview.com
Template: hello-elementor
Version: 1.0.0
*/

@import url("../twentytwentyfour/style.css");



/* Team Member Container */
.team-members-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 20px;
}

/* Individual Team Member Card */
.team-member-card {
    width: 23%;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

/* Hover Effect for Team Member Card */
.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Team Member Image Styling */
.team-member-image {
    width: 100%;
    height: 220px;
    background-position: center;
    background-size: cover;
    border-radius: 10px 10px 0 0;
}

/* Team Member Info Section */
.team-member-info {
    padding: 20px;
    background-color: #f4f4f4;
    border-top: 2px solid #ddd;
}

/* Team Member Name */
.team-member-info h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
}

/* Team Member Location */
.team-member-info p {
    color: #777;
    font-size: 14px;
    margin-bottom: 12px;
}

/* Profile Link Styling */
.team-member-info a {
    text-decoration: none;
    color: #0073e6;
    font-weight: bold;
}

/* Responsive Layout: Adjust to 2 columns for tablets */
@media (max-width: 768px) {
    .team-member-card {
        width: 48%;
    }
}

/* Responsive Layout: Adjust to 1 column for mobile */
@media (max-width: 480px) {
    .team-member-card {
        width: 100%;
    }
}