/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    width: 100%;
    font-size: 16px;
}



.banner {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 100%;
    height: 500px;
    background-color: white;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}

.featured-title {
    justify-content: center;
    align-items: center;
    line-height: 1.2;
    padding-top: 10vw;
    margin: 0;
}

.description {

    position: absolute;
    bottom: 20px;
    left: 30px;
    padding: 10px;
    max-width: 80%;
    box-sizing: border-box;
    text-align: left;
}

.main-image-container {
    width: 100%;
    height: auto;
    display: block;
    overflow: hidden;
    padding: 0px;
    margin-top: 20px;
    justify-content: center;
    align-items: center;

}

.main-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;

}


.title-banner {
    width: 100%;
    height: auto;
    display: grid;
    margin-left: 30px;
}

.image-caption {
    text-align: left;
    margin-left: 15px; /* Ensure there’s no unnecessary margin pushing the caption */
    display: block; /* Keep block display for control */
    width: 100%;
    margin-top: 7px;
}

.featured-subtitle {
    line-height: 10vh;
    padding-top: 7vw;
    padding-bottom: 1vw;
    padding-left: 6vh;
}

#sub-subtitle {
    
    padding-top: 3vw;
    padding-left: 12vw;
    font-family: "dm sans", Arial, Helvetica, sans-serif;
    font-weight: 100;
    font-size: 2rem;

}

.article-text {
    width: 80%;
    height: auto;
    margin-left: 25vw;
    line-height: 1.2;
}

.row-1 {
    display: flex;
    gap: 40px;
    padding-top: 3vw;
    padding-bottom: 1vw;
    width: 80%;
}

#last-paragraph {
    padding-left: 3vw;
}


.left {
    width: 20%;
}

.right {
    width: 80%;
}

.numbers-1 {
    white-space: nowrap;
    padding-top: 1vh;
    font-weight: 100;
}


.bottom {
    padding-top: 10vh;
}



.info {
    display: flex;
    width: 70%;
    height: auto;
    font-weight: 600;
    margin-left: 2vw;
    line-height: 1;
    gap: 20px;
}

.courtesy {
    display: inline-block;
    width:20%;

}

.artist-bio {
    display: inline-block;
    width:50%;
}


@media (min-width: 1367px) {
    .info {
        margin-bottom: 4vw;
    }

    .numbers-1 {
        font-size: 3rem;
    }
}

@media (max-width: 1367px) {
    .info {
        margin-bottom: 4vw;
    }

    .numbers-1 {
        font-size: 3rem;
    }
}

@media (max-width: 1024px) {
    .info {
        margin-bottom: 4vw;
    }

     .row-1 {
        width: 70%; /* Full width */
        text-align: left; /* Left-align text */
        margin: 0; /* Remove margins to avoid extra spacing */
        padding-left: 10px; /* Add padding to give space from the edge */
        overflow-wrap: break-word; /* Break long words */
    word-wrap: break-word;
    word-break: break-word;
    }

   
}

/* Mobile Phones (Landscape) and small tablets */
@media (max-width: 768px) {
   
    .banner {
        display: flex;
        flex-direction: column;
        align-items: center; /* Center child elements horizontally */
        text-align: center; /* Center text */
    }

    .numbers-1 {
        font-size: 2rem;
    }
   

    .description, .article-text, .notes, .notes-2, .info, .row-1 {
        width: 100%; /* Full width */
        text-align: left; /* Left-align text */
        margin: 0; /* Remove margins to avoid extra spacing */
        padding-left: 10px; /* Add padding to give space from the edge */
    }



    .two-images {
        display: flex;  /* Keep this for flex properties */
        flex-direction: column;  /* Change to column */
        width: 100%;
        height: auto;
        text-align: left;
    }





    /* Ensure images also adapt to a column layout */
    .main-image-container, .image-container-1, .image-container-2, .image-container-3 {
        width: 100%; /* Full width */
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content:  center;
        align-items: center;
        text-align: left;
        padding: 0px;
        margin: 0px;
        margin-bottom: 40px;
    }


    .info {
        padding-top: 7vw;
        padding-bottom: 7vw;
        width: 100%;
    }   

    .artist-bio {
        width: 70%;
    }

}

    @media (max-width: 480px) {
   
       
    
        .numbers-1 {
            font-size: 1.5rem;
        }


}

