.person-card-container-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    cursor: pointer;
}

/* hover animation */
.person-card-container-main:hover .person-page-link {
    cursor: pointer;
    display: block;
}

.person-card-container-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}
/* =========================
   Image Window (ONLY place with image)
========================= */
.person-image-window {
    position: relative;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    height: 320px;
    margin: 10px;
    border-radius: 20px;
}

/* =========================
   Info section
========================= */
.person-info-container {
    padding: 20px 30px;
    z-index: 10;
}

.separator {
    display: flex;
    align-items: center;
    place-content: space-between;
    flex-wrap: wrap;
}

.name {
    margin: 0;
}

.contact-number{
    margin: 0;
    height: 20px;
}

.email {
    margin: 0;
}


.title {
    opacity: 0.7;
}

.description {
}

.person-page-link {
    display: none;
    position: absolute;
    bottom: 10px;
    right: 25px;
}