#xp-image {
    max-width: 70%;
    height: auto;
}

ul {
    margin: 0;
}

.custom-card {
    color: var(--text-color);
    border-radius: 12px;
    box-shadow: 0 4px 8px 0 var(--terciary-color), 0 6px 20px 0 var(--terciary-color);
    transition: all 0.4s ease;
}

.profile-image-placeholder img {
    object-fit: cover;
    border-radius: 12px;
}

.custom-card:hover .profile-image-placeholder img {
    filter: brightness(65%);
    transition: filter 0.3s ease;
}

.card-footer {
    padding: 0 15px;
    background-color: unset;
}

.left-column {
    flex: 1;
    text-align: center;
}

#extra-info {
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.3s ease-in;
}

@media (min-width: 1100px) and (max-width: 1500px) {
    .col-xl-3 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

@media (min-width: 576px) and (max-width: 800px) {
    .col-sm-6 {
        flex: 0 0 80%;
        max-width: 80%;
    }
}