/* Base section page styles */
.section-page {
    margin: 0;
    padding: 0;
}

/* Typography */
.section-page h1 {
    color: #7030a0;
    font-size: 3em;
    margin-bottom: 2rem;
}

.section-page h2 {
    color: #7030a0;
    font-size: 1.5em;
    margin-top: 2em;
    margin-bottom: 1em;
}

.section-page p {
    margin: 0.75rem 0;
    line-height: 1.5;
}

.section-page p:last-child {
    margin-top: 2rem;
}

/* Poem Grid Layout */
.section-page .poem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

@media screen and (max-width: 900px) {
    .section-page .poem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .section-page .poem-grid {
        grid-template-columns: 1fr;
    }
}

/* Poem Links */
.section-page .poem-grid a {
    display: inline-block;
    color: #7030a0;
    padding: 0.1rem 1.5rem;
    text-decoration: none;
    font-size: 1.3rem;
}

.section-page .poem-grid a:visited {
    color: #7030a0;
}

.section-page .poem-grid a:hover,
.section-page .poem-grid a:focus {
    color: #ffffff;
    background-color: #7030a0;
}

/* Individual poem entries */
.poem-entry {
    margin-bottom: 1em;
}

.poem-entry h3 {
    margin: 0;
    font-size: 1.2em;
}

.poem-entry h3 a {
    color: #7030a0;
    text-decoration: none;
    padding: 0.1rem 1.5rem;
}

.poem-entry h3 a:hover {
    color: #ffffff !important;
    background-color: #7030a0;
    text-decoration: none;
}

/* Copyright notice */
.section-page p.copyright {
    color: #5f5f5f;
    font-style: italic;
    font-size: 1rem;
    margin-top: 2rem;
    text-align: left;
    line-height: 1.5;
}