/* Einheitliche grüne Überschriften */
h1, h2, h3,
.hero-text-wrapper h1,
.hero-text h1,
.hero-main h1,
.exhibitions-section h2,
.exhibition-item h3,
.work-title,
.projects-section h2,
.project-text h3,
.about-section h2,
.contact-section h2,
.slide-title,
.menu-desktop h6 {
    color: #2d5016 !important;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #f5f5f5;
}

.placeholder-image {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu {
    display: none;
    background-color: #fff;
    padding: 15px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
}

.mobile-logo-name {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    white-space: nowrap;
}

.mobile-logo-img {
    height: 30px;
    width: auto;
    flex-shrink: 0;
}

/* Desktop hero logo size (set to 120px as requested) */
.hero-logo {
    max-width: 120px;
    width: auto;
    height: auto;
    flex-shrink: 0;
}

.mobile-logo-name h6 {
    margin: 0;
    font-size: 14px;
    color: #2d5016;
    white-space: nowrap;
}

@media (max-width: 768px) and (orientation: landscape) {
    .mobile-menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .menu-desktop {
        display: none !important;
    }
    .content {
        padding: 0 10px;
        max-width: 100%;
        box-sizing: border-box;
    }
    .hero-header {
        display: flex;
        flex-direction: row;
        gap: 8px;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
    }
    .hero-logo {
        height: 5vw;
        width: auto;
        flex-shrink: 0;
    }
    .hero-text-wrapper {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    .hero-text-wrapper h1 {
        font-size: 2.8vw;
        margin: 0;
        line-height: 1;
        white-space: nowrap;
    }
    /* mobile landscape: expose hero h1 size and make h2 match it */
    body {
        --mobile-hero-h1-size: 2.8vw;
    }
    h2 {
        font-size: var(--mobile-hero-h1-size) !important;
        line-height: 1.05;
    }
    /* project subpage title slightly larger on mobile landscape */
    .artwork-detail h1 {
        font-size: calc(var(--mobile-hero-h1-size) + 1vw) !important;
        line-height: 1.05;
    }
    /* make artwork-detail section headings (e.g. "Über das Werk") one step smaller */
    .artwork-detail h2 {
        font-size: calc(var(--mobile-hero-h1-size) - 1vw) !important;
        line-height: 1.1;
    }
    .subheading {
        font-size: 3vw;
        line-height: 1.3;
        text-align: left;
        margin: 0;
    }
    /* Make normal body text match hero subtitle on mobile (landscape)
       Define a variable and apply it to common text selectors so only
       mobile layout is affected. */
    body {
        --mobile-subtitle-size: 3vw;
    }
    p,
    .subtitle,
    .artist-statement p,
    .exhibition-item p,
    .work-description,
    .work-credits,
    .exhibition-location {
        font-size: var(--mobile-subtitle-size) !important;
        line-height: 1.4;
    }
    /* artwork-detail section headings a bit smaller on portrait mobile */
    .artwork-detail h2 {
        font-size: calc(var(--mobile-hero-h1-size) - 1vw) !important;
        line-height: 1.1;
    }
    
    /* Mobile: Zeige kurzen Text und mehr-Link, verstecke vollen Text */
    .statement-short {
        display: inline !important;
    }
    
    .statement-full {
        display: none !important;
    }
    
    .statement-more {
        display: inline !important;
    }
    
    .artist-statement p {
        font-size: 4vw !important;
    }
    
    /* Exhibitions Section Mobile Portrait */
    .exhibitions-section {
        margin: 40px auto;
        padding: 0 15px;
    }
    
    .exhibitions-section h2 {
        font-size: 5vw;
        margin: 25px 0 20px 0;
    }
    
    .exhibition-item {
        margin-bottom: 30px;
    }
    
    .exhibition-item h3 {
        font-size: 4vw;
    }
    
    .exhibition-item p {
        font-size: 4vw;
    }
    
    .exhibition-location {
        font-size: 3.8vw;
    }
    
    .line {
        margin: 35px auto;
    }
    
    /* Featured Work Mobile Portrait */
    .work-image {
        height: 250px;
    }
    
    .work-title {
        font-size: 4vw;
    }
    
    .work-credits {
        font-size: 3.5vw;
    }
    
    .work-description {
        font-size: 4vw;
    }
    
    body {
        padding-top: 70px;
    }
}

@media (max-width: 768px) and (orientation: portrait) {
    .mobile-menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .menu-desktop {
        display: none !important;
    }
    .content {
        padding: 0 5px;
        max-width: 100%;
        box-sizing: border-box;
    }
    .hero-header {
        display: flex;
        flex-direction: row;
        gap: 2px;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
    }
    .hero-logo {
        height: 12vw !important;
        width: auto;
        flex-shrink: 0;
    }
    .hero-text-wrapper {
        display: flex;
        flex-direction: column;
        min-width: 0;
        gap: 2px;
        text-align: left;
    }
    .hero-text-wrapper h1 {
        font-size: 5vw !important;
        margin: 0;
        line-height: 1;
        white-space: nowrap;
        color: #2d5016;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .hero-text-wrapper .subheading {
        font-size: 3.5vw !important;
        line-height: 1.3;
        width: 100%;
        text-align: left;
        margin-top: 1px;
        order: 3;
    }
    /* mobile portrait: expose hero h1 size and make h2 match it */
    body {
        --mobile-hero-h1-size: 5vw;
    }
    h2 {
        font-size: var(--mobile-hero-h1-size) !important;
        line-height: 1.05;
    }
    /* project subpage title slightly larger on mobile portrait */
    .artwork-detail h1 {
        font-size: calc(var(--mobile-hero-h1-size) + 1vw) !important;
        line-height: 1.05;
    }
    /* Make normal body text match hero subtitle on mobile (portrait)
       Keep change scoped to this media query. */
    body {
        --mobile-subtitle-size: 3.5vw;
    }
    p,
    .subtitle,
    .artist-statement p,
    .exhibition-item p,
    .work-description,
    .work-credits,
    .exhibition-location {
        font-size: var(--mobile-subtitle-size) !important;
        line-height: 1.4;
    }
    .cv-buttons-wrapper {
        width: 100%;
        flex-direction: row;
        gap: 8px;
        margin-top: 10px;
    }
    .cv-buttons-wrapper .pdf-button-inline {
        flex: 1;
        text-align: center;
        font-size: 2.8vw;
        padding: 8px 10px;
    }
    .artist-statement p {
        font-size: 4vw !important;
    }
    
    /* Mobile: Zeige kurzen Text und mehr-Link, verstecke vollen Text */
    .statement-short {
        display: inline !important;
    }
    
    .statement-full {
        display: none !important;
    }
    
    .statement-more {
        display: inline !important;
    }
    
    /* Exhibitions Section Mobile Landscape */
    .exhibitions-section {
        margin: 30px auto;
        padding: 0 15px;
    }
    
    .exhibitions-section h2 {
        font-size: 4vw;
        margin: 20px 0 15px 0;
    }
    
    .exhibition-item {
        margin-bottom: 25px;
    }
    
    .exhibition-item h3 {
        font-size: 3vw;
    }
    
    .exhibition-item p {
        font-size: 3vw;
    }
    
    .exhibition-location {
        font-size: 2.8vw;
    }
    
    .line {
        margin: 30px auto;
    }
    
    /* Featured Work Mobile Landscape */
    .work-image {
        height: 200px;
    }
    
    .work-title {
        font-size: 3vw;
    }
    
    .work-credits {
        font-size: 2.8vw;
    }
    
    .work-description {
        font-size: 3vw;
    }
    
    body {
        padding-top: 70px;
    }
}

@media (max-width: 400px) and (orientation: landscape) {
    .hero-logo {
        height: 6vw;
    }
    .hero-text-wrapper h1 {
        font-size: 6vw;
    }
    .subheading {
        font-size: 3.5vw;
    }
}

#menuToggle input {
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 15px;
    left: 15px;
    cursor: pointer;
    opacity: 0;
    z-index: 4;
}

#menuToggle .close-button {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 36px;
    color: #2d5016;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 3;
    font-weight: normal;
    line-height: 1;
}

#menuToggle input:checked ~ .close-button {
    opacity: 1;
    pointer-events: auto;
}

#menuToggle input:checked ~ span {
    opacity: 0;
}

#menuToggle input:checked {
    width: 50px;
    height: 50px;
    top: 17px;
    left: 17px;
}

#menuToggle span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    background: #2d5016;
    border-radius: 3px;
    transition: 0.3s ease;
    position: relative;
}

#menuToggle input:checked ~ span:nth-child(2) {
    transform: rotate(45deg) translate(0px, 0px);
    position: absolute;
    top: 0;
}

#menuToggle input:checked ~ span:nth-child(3) {
    opacity: 0;
}

#menuToggle input:checked ~ span:nth-child(4) {
    transform: rotate(-45deg) translate(0px, 0px);
    position: absolute;
    top: 0;
}

#menuToggle ul {
    position: absolute;
    width: 50vw;
    margin: -100px 0 0 -50px;
    padding: 30px 0;
    padding-top: 120px;
    background: #ffffff;
    list-style: none;
    transform: translate(-100%, 0);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

#menuToggle input:checked ~ ul {
    transform: none;
}

#menuToggle ul li {
    padding: 15px 30px;
    border-bottom: 3px solid #1a3009;
    text-align: center;
}

#menuToggle ul li:last-child {
    border-bottom: none;
}

#menuToggle a {
    text-decoration: none;
    color: #2d5016;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: normal;
    font-size: 16px;
}

.menu-desktop {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #2d5016;
    position: sticky;
    top: 0;
    z-index: 100;
}

.menu-desktop .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.menu-desktop .col {
    display: flex;
    align-items: center;
}

.menu-desktop .col img.header-logo {
    height: 32px;
    width: auto;
}

.menu-desktop h6 {
    margin: 0;
    font-size: 16px;
    color: #2d5016;
}

.menu-desktop a {
    text-decoration: none;
    color: #2d5016;
    font-weight: 500;
    transition: color 0.3s ease;
}

.menu-desktop a:hover {
    color: #4a8c2a;
}

.lang-switcher {
    font-size: 14px;
    color: #2d5016;
    cursor: pointer;
}

.lang-active {
    font-weight: bold;
    color: #2d5016;
}

.lang-inactive {
    color: #999;
}

.lang-inactive:hover {
    color: #2d5016;
}

.lang-switcher-mobile {
    text-align: center;
    color: #2d5016;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    padding: 15px 30px;
    border-bottom: 3px solid #1a3009;
}

.lang-switcher-mobile:hover {
    background-color: #f5f5f5;
}

.logo {
    width: 30px;
    height: 30px;
    background-color: #2d5016;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 12px;
}

.background {
    background-color: #fff;
}

.content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-heading {
    height: 40px;
}

.hero-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0 60px 0;
    justify-content: center;
}

/* Projects page specific - left aligned */
.hero-header.projects-header {
    justify-content: flex-start;
    max-width: 900px;
    padding: 0 20px;
}

.hero-logo {
    height: 100px;
    width: auto;
    flex-shrink: 0;
}

.artist-statement {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: center;
    padding: 0 20px;
}

/* Desktop: Zeige vollen Text, verstecke kurzen Text und mehr-Link */
.statement-short {
    display: none;
}

.statement-full {
    display: inline;
}

.statement-more {
    display: none;
    color: #2d5016;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 700;
}

.statement-more:hover {
    opacity: 0.7;
}

.statement-less {
    display: none;
    color: #2d5016;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 700;
}

.statement-less:hover {
    opacity: 0.7;
}

.artist-statement p {
    font-size: 20px;
    line-height: 1.8;
    color: #2d5016;
    font-style: italic;
    font-weight: 600;
}

.pdf-button-inline {
    background-color: transparent;
    color: #2d5016;
    border: 1px solid #2d5016;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 15px;
    display: inline-block;
    transition: all 0.3s ease;
}

.pdf-button-inline:hover {
    background-color: #2d5016;
    color: white;
}

.pdf-button-container {
    text-align: center;
    margin: 30px 0;
}

.pdf-button {
    background-color: #2d5016;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.pdf-button:hover {
    background-color: #1a3009;
}

.hero-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero-text-wrapper h1 {
    font-size: 48px;
    margin: 0;
    color: #2d5016;
    white-space: nowrap;
}

.hero-text-wrapper .subheading {
    font-size: 20px;
    font-weight: 300;
    color: #666;
    font-style: italic;
    margin: 0;
}

.cv-buttons-wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cv-buttons-wrapper .pdf-button-inline {
    margin-top: 0;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    margin: 0 0 10px 0;
    color: #2d5016;
}

.hero-main h1 {
    font-size: 48px;
    margin: 0;
    color: #2d5016;
    white-space: nowrap;
}

.subheading {
    font-size: 20px;
    font-weight: 300;
    color: #666;
    font-style: italic;
    margin: 0;
}

.hero-section {
    margin-top: 0;
}

/* Exhibitions Section */
.exhibitions-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    color: #1a3009;
}

.exhibitions-section h2 {
    font-size: 24px;
    font-weight: bold;
    color: #2d5016;
    margin: 40px 0 30px 0;
    letter-spacing: 0.5px;
}

.exhibition-item {
    margin-bottom: 40px;
    line-height: 1.6;
}

.exhibition-item h3 {
    font-size: 16px;
    font-weight: bold;
    color: #2d5016;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.exhibition-item strong {
    font-weight: bold;
    color: #1a3009;
}

.exhibition-item p {
    margin: 8px 0;
    font-size: 16px;
    line-height: 1.6;
}

.exhibition-vernissage {
    color: #2d5016;
    font-size: 15px;
    margin: 5px 0 !important;
}

.exhibition-location {
    color: #2d5016;
    font-size: 15px;
}

.exhibition-separator {
    border-top: 1px solid #ddd;
    margin: 30px 0;
}

.line {
    border-top: 1px solid #2d5016;
    margin: 50px auto;
    max-width: 1200px;
}

/* Featured Work Section */
.featured-work {
    margin-top: 50px;
}

.work-image {
    width: 100%;
    height: 400px;
    background-color: #5aa835;
    margin: 10px 0;
}

.work-title {
    font-size: 16px;
    line-height: 1.6;
    margin: 10px 0;
}

.work-title em {
    font-style: italic;
    font-weight: bold;
}

.work-credits {
    font-size: 16px;
    line-height: 1.6;
    margin: 5px 0;
}

.work-description {
    font-size: 16px;
    line-height: 1.6;
    margin: 10px 0;
}

.slideshow-container {
    position: relative;
    margin: 40px 0;
}

.slideshow-inner {
    position: relative;
}

.mySlides {
    display: none;
}

.mySlides .text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 10px 20px;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    color: white;
    background: rgba(0,0,0,0.5);
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s;
    border-radius: 3px;
}

@media (max-width: 768px) {
    .prev, .next {
        display: none;
    }
}

.next {
    right: 0;
}

.prev {
    left: 0;
}

.prev:hover, .next:hover {
    background: rgba(0,0,0,0.8);
}

.dots-container {
    text-align: center;
    padding: 20px;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #2d5016;
}

.slide-title {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px 20px;
    margin-top: 10px;
    background: transparent;
    border: none;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: color 0.3s ease;
}

.slide-title:hover {
    color: #2d5016;
}

.projects-section {
    margin: 60px 0;
}

.projects-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2d5016;
}

.project-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2d5016;
}

.project-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.about-section {
    margin: 60px 0;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

.about-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2d5016;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
}

.contact-section {
    margin: 60px 0;
    text-align: center;
}

.contact-portrait {
    width: 100%;
    margin: 0 auto 40px;
}

.contact-portrait img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2d5016;
}

.contact-info {
    font-size: 18px;
    line-height: 2;
}

.contact-info a {
    color: #2d5016;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.line {
    height: 1px;
    background: #ddd;
    margin: 40px 0;
}

.footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #ddd;
    color: #666;
    font-size: 14px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #2d5016;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #2d5016;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

/* Artwork Detail Pages */
.artwork-detail {
    padding: 80px 20px 60px;
}

.artwork-detail h1 {
    font-size: 2.5em;
    color: #2d5016;
    margin-bottom: 10px;
}

.artwork-detail .year {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.artwork-image {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}

.artwork-image img {
    width: calc(50% - 8px);
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .artwork-image img {
        width: 100% !important;
    }
}

.artwork-info {
    max-width: 1200px;
    margin: 0 auto;
}

.artwork-info h2 {
    font-size: 1.8em;
    color: #2d5016;
    margin-bottom: 20px;
    margin-top: 40px;
}

.artwork-info h3 {
    font-size: 1.3em;
    color: #2d5016;
    margin-bottom: 15px;
    margin-top: 30px;
}

.artwork-info p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.artwork-info ul {
    list-style: none;
    padding: 0;
}

.artwork-info ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.footer-social a:hover {
    color: #1a3009;
}

.footer p {
    margin: 0;
    color: #999;
}

/* Projects Page Layout */
.project-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: start;
}

.project-left {
    width: 100%;
    order: 1;
}

.project-left img {
    width: 100%;
    height: auto;
    display: block;
}

.project-right {
    padding-top: 0;
    order: 2;
}

.project-right h2 {
    color: #2d5016;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: bold;
    transition: color 0.3s;
}

.project-right h2:hover {
    color: #1a3009;
}

.project-right .subtitle {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.project-right .year {
    font-size: 18px;
    font-weight: bold;
    color: #2d5016;
    margin-bottom: 15px;
}

.project-right p {
    line-height: 1.6;
    color: #666;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .project-item {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .heading h1 {
        font-size: 32px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    .placeholder-image {
        height: 300px;
    }
}

/* Contained top artwork for specific pages (e.g. Beauty in Change)
   Use this when the HTML marks the artwork with `top-contained`. This
   keeps the image the same size as other project header images (like
   the Parallel Universes archive) instead of full-bleed. */
.artwork-detail .artwork-image.top-contained {
    width: 100% !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box;
}
.artwork-detail .artwork-image.top-contained img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    max-width: 100% !important;
    object-fit: contain;
}

/* Full-width images that should align with the text column
   Use by adding `full-width` to the artwork-image container. */
.artwork-image.full-width {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.artwork-image.full-width img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
}