.faces-grid-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: #f5f5f5;
    padding: 20px;
}

.faces-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 20px;
}

.grid-cell {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    background: #ddd;
}

.face-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 0.5s ease-in-out;
}

.faces-grid-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    max-width: 80%;
}

.faces-grid-text-from-shortcode {
    color: #b3bd78;
    border: none;
    opacity: 0;
}

/* Grid Layout from reference */
.b-t-2 {
    border-top: 2px solid #fff;
}

.c-what {
    background-color: #b3bd78;
    display: grid;
    grid-template-columns: 11.11% 11.11% 55.55% 11.11% 11.11%;
    height: 65vh;
    overflow: hidden;
}

.f {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-content: space-between;
}

.b-r-2 {
    border-right: 2px solid #fff;
}

.g-h {
    height: 100%;
    display: grid;
    grid-template-rows: 70% 30%;
}

.align--v-h {
    display: flex;
    justify-content: center;
    align-items: center;
}

.g-v {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 20% 20% 20% 20% 20%;
}

/* Additional styles for face transitions */
.face-cell {
    position: relative;
    overflow: hidden;
}

.face-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 0.5s ease-in-out;
}

/* Text styles from reference */
.bg--green {
    background-color: #b3bd78 !important;
}

.color--black {
    color: #000;
}

.f-28 {
    font-size: 28px;
}

.f-w-300 {
    font-weight: 300;
}

.text-ls {
    letter-spacing: -0.02em;
}

.p-normal {
    padding: 2rem;
}