* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: 300 !important;
}

body {
    background-color: #f7f7f7; /* Pale grey */
    font-family: "Helvetica Neue Light", "Helvetica Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 10pt; /* Standardized font size */
    color: #1a1a1a;
    line-height: 1.6;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 80%;
    max-width: 720px;
    text-align: right;
    animation: fadeIn 1.2s ease-out;
    position: relative;
}

/* Text Section */
.artist-info {
    position: absolute;
    top: 0;
    left: -20px;
    transform: translateX(-100%);
    text-align: right;
    white-space: nowrap;
}

.artist-info em {
    font-style: italic;
}

/* Image Section */
.image-wrapper {
    margin-bottom: 0.5rem;
    overflow: hidden;
}

#featured-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Text Section */
.text-content {
    margin-bottom: 4rem;
}

.subtitle {
    font-size: 10pt; /* Match base font size */
    text-transform: none; /* Regular case only */
    letter-spacing: 0.05rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
    opacity: 0.8;
}

.number {
    font-size: 10pt; /* Match base font size */
    display: block;
    font-weight: 300;
}

/* Footer Section */
.contact {
    font-size: 10pt; /* Match base font size */
    letter-spacing: 0.02rem;
    line-height: 1.2; /* Tighter leading */
    color: hotpink;
}

.contact p {
    margin-bottom: 0;
}

.contact a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.contact a:hover {
    border-bottom-color: #1a1a1a;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        width: 95%;
        text-align: center;
    }
    .content {
        display: flex;
        flex-direction: column;
    }
    .image-wrapper {
        order: -1;
        margin-bottom: 1rem;
    }
    .artist-info {
        position: static;
        transform: none;
        text-align: center;
        margin-bottom: calc(1.5rem + 22mm);
        line-height: 1.3;
    }
    .contact {
        text-align: right;
        width: 100%;
    }
}
