/* ---------------------------------------------
   SAMuRA Artist Page — Walter Brown Style
   --------------------------------------------- */

/* Page background and global rhythm */
body {
    font-family: "Georgia", "Times New Roman", serif;
    background: #f2f2f2;
    color: #222;
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

/* Main container */
.artist-profile {
    max-width: 900px;
    margin: 60px auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(0,0,0,0.08);
}

/* Headings */
h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #0a4f4f; /* SAMuRA aqua-green tone */
}

h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 26px;
    color: #0a4f4f;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 5px;
}

/* Metadata block */
.artist-profile p strong {
    color: #444;
    font-weight: bold;
}

/* Chronology block */
pre {
    background: #fafafa;
    padding: 20px;
    border-left: 4px solid #0a4f4f;
    white-space: pre-wrap;
    font-size: 15px;
}

/* Images */
.artist-profile img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 4px;
}

/* Quotes */
blockquote {
    font-style: italic;
    background: #f9f9f9;
    padding: 20px;
    border-left: 4px solid #0a4f4f;
    margin: 20px 0;
    color: #555;
}

/* Links */
a {
    color: #0a4f4f;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive layout */
@media (max-width: 768px) {
    .artist-profile {
        padding: 25px;
        margin: 20px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 22px;
    }
}
.artist-header {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.artist-meta {
    flex: 1 1 60%;
}

.artist-photo {
    flex: 0 0 280px;
    text-align: right;
}

.artist-photo img {
    width: 280px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(0,0,0,0.18);
    cursor: pointer;
}
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.image-modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
}
