/*******************************************/
/* --- Content Card Links (Poem & Art) --- */
/*******************************************/

div.body a.poem-card-link,
div.body a.issue-card-link {
    border-bottom: none;
}

div.body a.poem-card-link:hover,
div.body a.issue-card-link:hover {
    border-bottom: none;
}


div.body a.poem-card-link,
div.body a.art-card-link {
    display: block;
    color: inherit; 
    border-bottom: none;
    text-decoration: none;
}

div.body a.poem-card-link:hover,
div.body a.art-card-link:hover {
    border-bottom: none;
    color: inherit;
}

div.body a.poem-card-link:visited,
div.body a.art-card-link:visited {
    border-bottom: none;
    color: inherit;
}

/******************************/
/** ------ Poem Cards ------ **/
/******************************/

.poem-card-link {
    text-decoration: none;
    border-bottom: none;
    display: block;
    color: inherit;
}

.poem-card-link:hover {
    border-bottom: none;
}

.poem-card {
    background-color: var(--color-background-paper);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 1.25rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.poem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(147, 112, 219, 0.4);
}

.poem-card-title {
    font-family: var(--font-family-heading);
    color: var(--color-primary-light);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    margin: 0 0 0.25rem 0;
    text-shadow: none;
}

.poem-card-author {
    font-family: var(--font-family-body);
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    font-style: italic;
    margin: 0 0 1rem 0;
}

.poem-card-excerpt {
    font-family: var(--font-family-body);
    color: var(--color-text-primary);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-normal);
    margin: 0;
}

/******************************/
/** ------ Art Cards ------- **/
/******************************/

.art-card-link {
    text-decoration: none;
    border-bottom: none;
    display: block;
    color: inherit;
}

.art-card-link:hover {
    border-bottom: none;
}

.art-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--color-background-paper);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.art-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(147, 112, 219, 0.4);
}

.art-card-media {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 4px;
    overflow: hidden;
}

.art-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.art-card-content {
    flex-grow: 1;
}

.art-card-title {
    font-family: var(--font-family-heading);
    color: var(--color-primary-light);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    margin: 0 0 0.25rem 0;
    text-shadow: none;
}

.art-card-author {
    font-family: var(--font-family-body);
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    font-style: italic;
    margin: 0 0 1rem 0;
}

.art-card-excerpt {
    font-family: var(--font-family-body);
    color: var(--color-text-primary);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-normal);
    margin: 0;
}
