.album__angel-image {
    width: 153px;
    height: 153px;
    border: 5px solid #FFFFFF4D;
   border-radius: 50%;
    overflow: hidden;
}

.album__top {
    padding-bottom: 0;
}

.album__angel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album__wrapper {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}

.album__name {
    font-family: Playfair Display;
    font-weight: 700;
    font-style: Italic;
    font-size: 36px;
    margin-bottom: 15px;
}

.album__angel-categories {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.album__category {
    display: flex;
    gap: 8px;
    align-items: center;
    font-family: Avenir Next;
    font-weight: 500;
    color: #231F20;
    font-size: 15px;
}

.album__angel-tags {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}

.album__tag {
    background: #A6988A;
    font-family: Avenir Next;
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
    padding: 3.5px 10px;
}

.album__text {
    font-family: Avenir Next;
    font-weight: 500;
    font-size: 22px;
    color: #231F20;
    margin-bottom: 60px;
}

.album__breadcrumbs {
    display: flex;
    gap: 6px;
}

.album__breadcrumbs a,
.album__breadcrumbs span{
    color: #A6988A;
    transition: all 0.3s ease-out;
}

.album__breadcrumbs a:hover {
    color: #231F20;
}

@media screen and (max-width: 599.98px) {
    .album__wrapper {
        margin-bottom: 20px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .album__info {
        align-self: flex-start;
    }

    .album__name {
        font-size: 26px;
    }

    .album__breadcrumbs {
        margin-bottom: 10px;
    }

    .album__text {
        font-size: 18px;
    }
}