.cormorant-garamond-light {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-style: normal;
}

.cormorant-garamond-light-italic {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-style: italic;
}

.cormorant-garamond-regular {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: normal;
}

.cormorant-garamond-regular-italic {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
}

.cormorant-garamond-medium {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-style: normal;
}

.cormorant-garamond-medium-italic {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-style: italic;
}

.cormorant-garamond-semibold {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-style: normal;
}

.cormorant-garamond-semibold-italic {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-style: italic;
}

.cormorant-garamond-bold {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-style: normal;
}

.cormorant-garamond-bold-italic {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-style: italic;
}

body {
    font-family: Helvatica, Arial, sans-serif;
    background-color: white;
    font-size: 1rem;
    color: black;
    margin: 0;
    /* debugging
    background-color: black;
    height: 100vh;
    overflow: hidden;
    */
    display: grid;
    place-items: center;
    height: 100vh;
}

a {
    text-decoration: none;
    color: #000;
}

main {
    width: 806px;
}

main div.a {
    border-right: 1px dotted #ccc;
}

main div.a img {
    display: block;
    margin-top: 225px;
}

main div.b {
    min-width: 350px;
    max-width: 637px;

    min-height: 337px;
    max-height: 500px;
}

main div.b a {
    display: block;
}

main div.b img {
    width: 100%;
    display: block;
    transition: outline 0.5s ease-out;
    outline: 10px solid #ddd;
}

main div.b img:hover {
    outline: 10px solid #000;
}

main div.c {
    min-width: 287px;
    max-width: 637px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-style: normal;
}
main div.c a,
main div.c h2,
main div.c p,
main div.c blockquote {
    margin: 0;
    padding: 0;
}

main div.c h2 {
    font-weight: normal;
    color: #e6e6e6;
    font-size: 1.6rem;
    margin-bottom: 20px;
    line-height: 0.4em;
}

main div.c blockquote .quote {
    font-size: 1.3rem;
    line-height: 1.8rem;
    margin-bottom: 1.375rem;
    max-width: 250px;
}

main div.c blockquote .author {
    color: #a0a0a0;
    font-size: 1rem;
}

main div.c blockquote .year {
    color: #bbb;
    font-size: 0.8rem;
}

main div.c .copyright {
    color: #ddd;
    font-size: 0.8rem;
    font-family: Helvetica, Arial, sans-serif;
}

main section {
    display: none;
    gap: 35px;
}

main section:target {
    display: grid;
}

main section.vertical {
    grid-template-columns: 131px 350px 254px;
}

main section.vertical div.c {
    display: flex;
    flex-direction: column;
}

main section.vertical div.c h2 {
    margin-top: 176px;
    margin-bottom: 20px;
    flex-grow: 0;
}

main section.vertical div.c div.story {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

main section.horizontal {
    grid-template-columns: 637px 133px;
}

main section.horizontal div.a {
    border-right: none;
    display: flex;
    justify-content: end;
    width: 100%;
    grid-column: 2/3;
}
main section.horizontal div.a img {
    margin-top: 167px;
}

main section.horizontal div.b {
    grid-row: 1/2;
}

main section.horizontal div.c {
    border-top: 1px dotted #ccc;
    padding-top: 35px;
    display: grid;
    grid-template-columns: 1fr 131px;
}
main section.horizontal div.c h2 {
    grid-column: 2 / 3;
    margin-bottom: 0;
    text-align: right;
}

main section.horizontal div.c div.story {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

main section.horizontal div.c div.story blockquote .quote {
    max-width: 73%;
}

main section.horizontal div.c div.story .copyright {
    margin-top: 17px;
}

main section:last-child div.b:hover {
    cursor: not-allowed;
}
main section:last-child div.b img {
    outline: 10px solid #000;
}
main section:last-child div.b img:hover {
    outline: 10px solid #ddd;
}

/*
main section:first-child {
    display: grid;
}

main:has(section:target) section:first-child {
    display: none;
}
*/
