main {
    gap: 1.5rem;
}

.block {
    border: 1px solid var(--brighter65);
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.block h1,
.block h2,
.block h3,
.block h4,
.block h5 {
    margin: 0;
}

.block .head {
    margin: 1rem 0;
    width: 100%;
    text-align: center;
    color: var(--warning);
}

.gallery {
    gap: 1rem;
    overflow: hidden;
}

.gallery.row,
.discography.row:not(.single),
.blogs.row {
    gap: 1rem;
    -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
    mask-image: linear-gradient(to right, black 80%, transparent 100%);
}

.gallery.row .imgcont {
    width: 350px;
    min-width: 350px;
    max-width: 350px;
    height: 350px;
    border-radius: 1rem;
    transform: scale(0.95);
    transition: all 0.1s ease;
}

.gallery.row .imgcont:focus,
.gallery.row .imgcont:hover {
    transform: scale(1);
}

@media only screen and (max-width: 1000px) {
    .gallery.row .imgcont {
        width: 250px;
        min-width: 250px;
        max-width: 250px;
        height: 250px;
    }
}

.block.gallery .row {
    gap: 1rem;
}

.block.gallery .row .imgcont,
.block.gallery .row .imgcont img {
    border-radius: 0.5rem;
}

.block.gallery .row .imgcont {
    width: 350px;
    max-width: 350px;
}

.block.gallery .parsedown {
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

@media only screen and (max-width: 1000px) {
    .block.gallery .row .imgcont {
        width: 250px;
        max-width: 250px;
    }

    .block.gallery .row .column {
        display: none !important;
    }

    .block.gallery .row {
        justify-content: center;
        align-items: center;
    }
}

.discography a {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.discography .imgcont {
    width: 350px;
    height: 350px;
}

.discography.row:not(.single) {
    gap: 2rem !important;
}

.discography.row:not(.single) a {
    width: 350px;
    max-width: 350px;
    min-width: 350px;
}

.discography.row:not(.single) a * {
    word-wrap: break-word;
}

.discography .release {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    width: 100%;
}

.discography.single {
    padding-bottom: 1rem;
}

@media only screen and (max-width: 1000px) {
    .discography .release {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .discography .release .imgcont {
        width: 250px;
        height: 250px;
    }

    .discography .imgcont {
        width: 150px;
        height: 150px;
    }
}

.discography .release h3,
.discography .release h4 {
    width: 100%;
    text-align: center;
}

.discography .release h3 {
    font-size: 2rem;
}

.discography .release h4 {
    font-size: 1rem;
}

.discography .release .column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.discography .release .imgcont {
    width: 400px;
    height: 400px;
}

@media only screen and (max-width: 1000px) {
    .discography .release .imgcont {
        width: 250px;
        min-width: 250px;
        max-width: 250px;
        height: 250px;
    }
}

.discography .release .parsedown {
    height: 300px;
    max-height: 300px;
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.discography .release .row {
    width: 100%;
    gap: 1rem;
}

.backdrop {
    position: relative;
    overflow: hidden;
}

.blog .imgcont.pfp {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.blog .parsedown {
    height: 300px;
    max-height: 300px;
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.blogs.row a,
.blogs.row .imgcont,
.blogs.row .above {
    width: 300px;
    max-width: 300px;
    height: 175px;
    max-height: 175px;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.blogs.row a {
    transform: scale(0.95);
    transition: all 0.1s ease;
}

.blogs.row a h4 {
    margin: 0.5rem 0;
    font-size: 1.12rem;
    color: color-mix(in srgb, var(--highlight) 25%, white 75%);
}

.blogs.row a:hover {
    transform: scale(1);
}

.blogs.row .imgcont {
    z-index: 0;
}

.blogs.row .above {
    top: -175px;
    left: 0px;
    z-index: 1;
    background-color: rgb(0,0,0,0.5);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.1s ease;
}

.blogs.row .above * {
    width: calc(100% - 1rem) !important;
    padding: 0.5rem !important;
    margin: 0 !important;
    text-align: center !important;
}

.blogs.row .above:hover {
    background-color: rgb(0,0,0,0.65);
}

@media only screen and (max-width: 1000px) {
    .blogs.row a,
    .blogs.row .imgcont,
    .blogs.row .above {
        width: 250px;
        height: 150px;
    }

    .blogs.row .above {
        top: -150px;
    }

    .blogs.row .above h4 {
        font-size: 0.95rem;
    }

    .blogs.row .above h5 {
        font-size: 0.9rem;
    }
}