.signup-btn {
    background-color: var(--black);
    color: white;
    width: 220px;
    padding: 20px;
    margin-bottom: 2.5%;
    font-size: 105% !important;
}

.profile-listing-cta-btn {
    background-color: var(--black);
    color: white;
    padding: 20px 25px;
    margin-bottom: 2.5%;
    font-size: 105% !important;
}

.hero-holder .brand-logo-holder {
    align-self: stretch;
}

.listing-row-v2{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.profile-listing-username {
    font-weight: 600;
    font-size: 125%;
    margin-bottom: 8px;
    padding-left: 4px;
}

.vertical-listing {
    display: flex;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: solid 1px black;
    height: 250px;
}

.vertical-listing .profile-listing-info-holder {
    display: flex;
    padding: 12px 16px;
    flex: 1;
    gap: 25px;
}

.profile-listing-holder {
    cursor: auto;
}

.vertical-listing .profile-listing-info {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    margin: 0;
    gap: 10px;
}

.vertical-listing .profile-listing-owner-holder {
    display:flex;
    flex-direction: column;
    align-items: baseline;
    gap: 2px;
}

.vertical-listing .profile-listing-cta-holder {
     align-self: center;
     margin-left: auto;
}

.vertical-listing .profile-listing-username {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.vertical-listing .profile-listing-content {
    display: flex;
    flex-direction: row;
}

.vertical-listing .profile-listing-img-holder {
    min-width: 150px;
    width: 250px;
    height: auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 0;
}

.vertical-listing .profile-listing-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.vertical-listing .profile-platform-badge {
    display:none;
}

.vertical-listing .profile-listing-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vertical-listing .profile-listing-review-img {
    width: 12px;
    height: 12px;
}

.vertical-listing .profile-listing-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    height: auto;
}

.vertical-listing .profile-listing-category {
    font-size: 12px;
    color: #d6d6d6;
    margin-bottom: 4px;
}

.vertical-listing .profile-listing-description {
    color: #909090;
    line-height: 1.5;
    margin-top: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.vertical-listing .save-btn,
.vertical-listing .added-img {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 3;
}

.vertical-listing .save-btn-img {
    width: 20px;
    height: 20px;
    fill: rgba(255, 255, 255, 0.8);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.vertical-listing .added-img {
    width: 20px;
    height: 20px;
    display: none;
}

.platform-img-holder-creator {
    font-size: 78%;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.platform-img-holder-creator .platform-img{
    margin: 0 12px 4px 0;
    padding: 4px 7px;
    border-radius: 8px;
    border: 1px solid var(--lightGray);
    box-shadow: var(--lightBoxShadow);
    width: fit-content;
}

.platform-img-holder-creator span{
    color: cornflowerblue;
    text-decoration: none !important;
}

.platform-img-holder-creator img{
    width: 16px !important;
    margin-right: 5px;
}

.platform-img {
    margin: 0 15px 0 0;
    width: 18px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
}

.platform-img img{
    width: 100%;
    height: 100%;
}

.platform-follower-holder{
    color: cornflowerblue;
}

.platform-follower-holder:hover{
    text-decoration: underline;
}

.platform-follower-blur{
    filter: blur(2.5px);
}

.creator-card{
    border: solid #E2E2E2 1px;
    border-radius: 12px;
    padding: 6px;
    text-align: center;
    gap: 6px;
}

.engagement-rate{
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 0;
    margin-block-start: 0.4em;
}

.engagement-rate-label{
    font-size: 0.6rem;
    line-height: 0;
    margin-block-end: 0.3rem;
    color: #909090;
}

.profile-link-btn{
    cursor: pointer;
}

@media only screen and (max-width: 1100px) {
    .vertical-listing .profile-listing-description {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
}

@media only screen and (max-width: 800px) {
    .vertical-listing {
        flex-direction: column;
        align-items: center;
        height: auto;
    }
    
    .vertical-listing .profile-listing-info-holder {
        display: flex;
        flex-direction:column;
        padding: 20px;
    }
    
    .vertical-listing .profile-listing-cta-holder {
        margin-left: 0;
    }

    .creator-card {
        display:none;
    }
    
    .vertical-listing .profile-listing-title {
        text-align:center;
    }
    
    .vertical-listing .profile-listing-img-holder {
        max-height: 250px;
        overflow: hidden;
        border-radius: 0;
        width: 100%;
    }

    .vertical-listing .platform-img-holder-creator {
        display:none;
    }

    .vertical-listing .profile-platform-badge {
        display: flex;
    }

    .profile-listing-cta-btn {
        padding: 20px 45px;
    }
}