.callout {
    background: var(--gold);
    position: relative;
    z-index: 1;          
    overflow: visible;   
    display: flex;
    align-items: flex-end;
}
 
.callout__inner {
    max-width: var(--max-width);
    width: 100%;
    margin: auto;
    padding: 20px 0;
}

.callout__title{
    font-family: "Anton", sans-serif;
    font-size: clamp(3rem, 6vw, 4rem);
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    white-space: pre-line;
    flex-shrink: 0;
    padding-bottom: 40px; 
}

.callout__image {
    position: absolute;
    right: 0;
    bottom: 0;           
}
 
.callout__image img {
    height: 500px;       
    width: auto;
    object-fit: contain;
    object-position: bottom;
    display: block;
}

