.main {
    display: flex;
    flex-direction: column;
}

.browser-gradient {
    background-image: linear-gradient(to bottom, rgba(83, 83, 83, 0.226) 0,var(--background-elevated-dark));
    background-repeat: no-repeat;
    height: 300px;
    position: absolute;
    width: 77%;
    border-radius: 8px;
}

.section-cards-top {
    display: flex;
    justify-content: start;
    flex-direction: column;
    padding: 1.5rem 24px;
    gap: 12px;
    z-index: 1;
}

.section-title {
    color: var(--spotify-texto-branco);
    font-weight: bolder;
    font-size: 20px;
    padding: 0px 12px;
}

.section-title:hover {
    text-decoration: underline;
}

.section-grid {
    display: flex;

}

.article-card {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    cursor: pointer;
    max-width: 175px;
}

.article-card-margin {
    display: flex;
    flex-direction: column;
    padding: 12px;
    gap: 8px;
}

.article-card-margin:hover {
    background-image: linear-gradient(to bottom, transparent, var(--spotify-card-cinza));
    border-radius: 8px;
}

.article-card-link {
    width: auto;
}

.article-card-image {
    height: 155px;
    width: auto;
    border-radius: 8px;
}

.article-card-image_rounded {
    background-color: var(--spotify-card-cinza);
    height: 155px;
    width: 155px;
    border-radius: 8px;
    border-radius: 50%;
}

.article-card-info {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.article-card-title {
    color: var(--spotify-texto-branco);
    font-weight: 500;
    font-size: 15px;
}

.article-card-title:hover {
    text-decoration: underline;
}

.article-card-artist {
    color: var(--spotify-texto-cinza);
    font-weight: 500;
    font-size: 14px;
}

.article-card-artist:hover {
    text-decoration: underline;
}