.example-image
{
    /*max-width: 250px;*/
    height: 70vh;
    width: auto;      /* responsive */
    margin-top: 20px;
    border-radius: 10%;
    background: rgba(0,0,0,0.3);
}

.example-image-caption
{
    margin-top: 10px;
    color: white;
    font-size: 0.8vw;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    width: 50%;
    padding: 1% 1%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.example-image-container
{
    /*background-color: black;*/
    width: 100%;
    border-radius: 5%;
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Flex container for main content + left ad */
.main-content-flex {
    display: flex;
    align-items: flex-start; /* align top of examples with top of ad */
    gap: 24px; /* space between ad and content */
    max-width: 1200px;
    margin: 40px auto;
}

/* Left ad column */
.ad-container.ad-left {
    /*display: flex;*/
    display: none;
    flex-direction: column; /* stack ads vertically */
    align-items: center;
    gap: 24px; /* space between ads */
    width: 160px;
    min-height: 100%; /* stretch to page height */
    background: rgba(255,255,255,0.03);
}

/* Hide if empty */
.ad-container.ad-left:empty {
    display: none;
}

/* Examples section takes remaining space */
.examples-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Make images centered */
.example-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}