/* BREADCRUMBS */
.custom-breadcrumbs {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 18px;
    color: #000;
}

.custom-breadcrumbs a {
    text-decoration: underline;
}

.custom-breadcrumbs a:hover {
    text-decoration: none;
}

/* LATEST STUDENT PORTFOLIOS SHORTCODE */
.latest-student-portfolios {
    display: flex;
    gap: 10px;
    min-height: 500px;
}

.latest-student-portfolios .student-portfolio {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex: 1;
    transition: flex ease-in-out .3s;
    position: relative;
    color: #fff;
    text-decoration: none;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.latest-student-portfolios .student-portfolio .title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 4px;
}

.latest-student-portfolios .student-portfolio .see-work {
    margin-top: auto;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 20px;
}

.latest-student-portfolios .student-portfolio .see-work span {
    border-bottom: 2px solid #be0000;
}

.latest-student-portfolios .student-portfolio::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #000;
    opacity: 0;
    top: 0;
    left: 0;
    z-index: 0;
}

.latest-student-portfolios .student-portfolio:hover::after,
.latest-student-portfolios .student-portfolio:focus::after {
    opacity: .7;
    transition: opacity ease-in-out .3s;
    transition-delay: .3s;
}

.latest-student-portfolios .student-portfolio .title,
.latest-student-portfolios .student-portfolio .name,
.latest-student-portfolios .student-portfolio .see-work {
    opacity: 0;
    position: relative;
    z-index: 1;
}

.latest-student-portfolios .student-portfolio:hover, .latest-student-portfolios .student-portfolio:focus {
    flex: 2.5;
}

.latest-student-portfolios .student-portfolio:hover .title,
.latest-student-portfolios .student-portfolio:hover .name,
.latest-student-portfolios .student-portfolio:hover .see-work,
.latest-student-portfolios .student-portfolio:focus .title,
.latest-student-portfolios .student-portfolio:focus .name,
.latest-student-portfolios .student-portfolio:focus .see-work {
    opacity: 1;
    transition: opacity ease-in-out .3s;
    transition-delay: .3s;
}