/* =================================
  Subpage 4 ('Field 1') Styles
  ================================= */

.content-heading {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.interview-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
    font-size: 1.1rem;
    color: #555;
}

.interview-article {
    margin-bottom: 60px;
}

.interview-question {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.author-links {
    margin-top: 30px;
    text-align: right;
}

.author-links a {
    display: inline-block;
    margin-right: 20px;
    text-decoration: underline;
    color: #555;
}
.author-links a:hover {
    color: var(--main-color);
}


.image-gallery {
    display: grid;
    grid-template-columns: 1fr; /* Single column */
    gap: 0;
    margin: 80px 0;
}
.gallery-item {
    overflow: hidden;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block; /* add display block to remove bottom space */
}
.gallery-item:hover img {
    transform: scale(1.05);
}

.quote {
    margin: 40px 0;
    padding: 30px;
    background-color: #f8f8f8;
    border-left: 4px solid var(--main-color);
    font-size: 1.2rem;
    font-weight: 500;
    color: #444;
    line-height: 1.7;
}

