/* What we believe Section */
#what-we-believe {
    background-color: #000;
}

.philosophy-text-container {
    grid-column: 1;
    grid-row: 1 / -1;  /* Full height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 var(--gutter);
    padding-top: calc(var(--gutter) + var(--desktop-cell-height) + var(--gutter)); /* start of cell 2 */
    background-color: #fff;
}

.philosophy-paragraph {
    font-size: var(--font-believe-body);
    line-height: var(--font-believe-line-height);
    margin-bottom: 0; /* NO base spacing - add explicitly where needed */
    opacity: 0;
    color: #000;
}

/* Add spacing only where copy has empty lines */
.philosophy-paragraph[data-index="2"] {
    margin-bottom: var(--font-believe-line-height);
}

.philosophy-paragraph[data-index="4"] {
    margin-bottom: var(--font-believe-line-height);
}

.philosophy-paragraph[data-index="5"] {
    margin-bottom: var(--font-believe-line-height);
}

.philosophy-video-container {
    position: relative;
    overflow: hidden;
}

.philosophy-video-container:nth-of-type(2) {
    grid-column: 2;  /* Band 2 only */
    grid-row: 1 / -1;
}

.philosophy-video-container:nth-of-type(3) {
    grid-column: 3 / 5;  /* Band 3 + nav strip (media extends) */
    grid-row: 1 / -1;
}

.philosophy-video-container .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
