body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 2rem;
    background: #323236;
}

a {
  color: white;         /* White text */
  text-decoration: underline; /* Always underlined */
  transition: color 0.3s;    /* Smooth color change on hover */
}

a:hover {
  color: grey;           /* Grey on hover */
}

.container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    gap: 2rem;
}

.row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .row {
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    }
}

.image-wrapper {
    position: relative;
}

.image-wrapper img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.audio-player {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px;
    border-radius: 8px;
}

.audio-player audio {
    width: 100%;
}

.text-content {
    background: #525252;
    color: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
}

.highlight {
    font-weight: bold;
    font-size: 1.1em;
    color: #fff;
}

#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

#lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

.page-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #ededed;
}

.page-intro {
    max-width: 900px;
    margin: 0 auto 1rem auto;
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ededed;
}