/** css for home page: sommaire and rubrique. 1. cover 2. teasers **/
/** site cover **/
.site-cover {
    margin-top: 1rem;
    padding: .5rem;
    border-radius:.5rem;
    text-align: center;
}
.coverimage {
 background-color: whitesmoke;
padding: .5rem;
border: 1px solid #ddd;
border-radius: 1rem;
margin: 1rem;
}
.issue-title {
    margin-bottom: 1rem;
    font-size: 1.6rem;
font-weight: bold;
    color: #212121;
text-align: center;
}
.artist-name {
    margin-top: .5rem;
    font-size: 1.1rem;
    color: #121212;
}
.coverimage img {
    max-width: 100%;
    height: auto;
    margin-top: 1rem;
    border-radius: .5rem;
}
/** css for cover pages: sommaire (home) and rubrique **
 * 1. article teasers
 */

/** article teasers on home page and rubrique **/
.articles-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1rem;
}

.teaser {
    padding: .5rem;
    background-color: whitesmoke;
    border: 1px solid rgba(185, 169, 169, 0.422);
    border-radius: .75rem;
}

.teaser-header {
    margin-bottom: .5rem;
}

/* Article author section - common styling */
.article-author {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: bold;
    color: #661a15;
}

/* Article title - adapts to context */
.article-title {
    margin: 0 0 .5rem 0;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: #212121;
}


/* Article subtitle: sommaire and rubrique pages */
.article-subtitle {
    opacity: 0.8;
    margin: 0 0 .5rem .5rem;
    font-size: 1rem;
    color: #121212;
}

.article-intro {
    margin-top: 1rem;
    margin-bottom: .5rem;
    font-size: 1.25rem;
    line-height: 1.7;
    color: #212121;
}


.teaser-footer {
    display: flex;
    justify-content: flex-start;
    gap: .75rem;
    margin-top: .5rem;
    background-color: whitesmoke;
}

.read-more {
    display: inline-block;
    padding: .5rem .75rem;
    background-color: #121212;
    border: 2px solid #ddd;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}

.read-more:hover {
    background-color: mintcream;
    color: #888888;
}

.read-more-link {
    font-size: 1rem;
    color: inherit;
    text-decoration: none;
}

.author-logo {
  float: left;
  margin-right: 15px;
  margin-bottom: 10px;
}

.author-logo img {
  border-radius: 50%; /* Makes it circular */
  border: 2px solid #ddd;
  padding: 2px;
}

/* For responsive design */
@media (max-width: 480px) {
  .author-logo {
    float: none;
    margin-right: 0;
    text-align: center;
  }
}