/* Photo Highlight Section */
.photo-highlight {
    /* Gradient from Dark Navy to a Lighter Slate/Navy */
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    padding: 0 0 6rem 0;
    text-align: center;
    margin-top: -5px;
}

.photo-container {
    display: flex;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.photo-mask {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.6);
    max-width: 900px;
    width: 100%;
    position: relative;
}

/* 
   Patch to hide the "1/3" artifact.
   Updated to be larger and black as requested.
*/
.photo-patch {
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
    /* Significantly wider to ensure coverage */
    height: 80px;
    /* Taller to ensure coverage */
    background-color: #000000;
    /* Pure black */
    border-bottom-left-radius: 40px;
    /* Styled curve to look like a design element */
    z-index: 10;
}

.photo-highlight img {
    /* Natural aspect ratio */
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .photo-highlight {
        padding-bottom: 4rem;
    }

    .photo-patch {
        width: 100px;
        height: 60px;
    }
}