/* assets/css/vcard.css */

.vcard-wrapper {
    max-width: 1000px;
    width: fit-content;
    margin: 4rem 20px;
    padding: 40px;
    border-radius: 40px;
    border: 1px solid var(--color-slate-200);
    font-family: sans-serif;
    text-align: left;
    display: flex;
    gap: 30px;
    align-items: center;
    position: relative;
    left: calc(50% - 20px);
    transform: translateX(-50%);
}

.vcard-wrapper h1 {
    margin:0;
}

.vcard-photo-wraper {
  flex-shrink: 0;
}

.vcard-content-wraper {
  flex: 1;
}
.employee-title {
    color: var(--color-oms-brand);
    margin-bottom: 5px;
}
.employee-photo {
    width: 250px;
    height: 250px;
    border-radius: 30px;
    background-size: cover;
    background-position: center;
}
.contact {
    padding: 10px 0;
}
.contact a {
    display: block;
    align-items: center;
    margin: 0.5rem;
    text-decoration: none;
    color: var(--color-oms-body);
}
.contact a img {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
}
.download-button {
    display: inline-block;
    margin: 10px 0 0 0px;
    padding: 4px 15px;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

@media screen and (max-width: 849px) {
    .vcard-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 20px 20px 40px 20px;
        margin: 20px 20px 40px 20px;
        }
    .employee-photo {
        margin: 30px 30px 0 30px;
        }
    }