/* Main content styles */
main {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center align items vertically */
    justify-content: center; /* Center align items horizontally */
    width: 100%;
    max-width: 1200px; /* Adjust as needed */
    margin: 0 auto; /* Center the main content */
    text-align: center; /* Center the text */
    box-sizing: border-box; /* Include padding and border in width/height calculations */
}

.studio-details {
    color: #BD8E57; /* Text color for the details */
    font-size: 16px; /* Font size for description */
}

.studio-title {
    font-size: 24px; /* Font size for the title */
    margin-bottom: 20px;
}

.studio-description {
    line-height: 1.5; /* Line height for spacing */
    color: #fff; /* Text color */
}

.studio-description span {
    display: inline; /* Ensure spans are inline */
}

.studio-description .highlight {
    color: #FFE03E; /* Highlight color */
}

/* Styles for the studio image */
.studio-image {
    width: 77rem; /* Width of the studio image */
    height: 30.25rem; /* Maintain aspect ratio */
    margin-top: 20px; /* Space above the image */
    object-fit: cover; /* Ensure the image covers the area */
    max-width: 100%; /* Prevent the image from exceeding the container width */
}

@media (max-width: 768px) {
    .studio-title {
        font-size: 20px; /* Adjust title size for smaller screens */
    }

    .studio-description {
        font-size: 14px; /* Adjust description size for smaller screens */
    }

    .studio-image {
        width: 100%; /* Make the image responsive */
        height: auto; /* Maintain aspect ratio */
    }
}
