.banner {
    padding: 0 0px 50px 0px;
}

.banner .banner-top-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.banner .banner-top-section .text-section {
    max-width: 505px;
    text-align: right;
}

.banner .banner-top-section .text-section h1 {
    padding: 0;
    margin: 0;
    font-size: 5em;
    font-weight: 600;
    color: var(--highlight-color);
    text-transform: uppercase;
    line-height: 1em;
}

.banner .banner-top-section .text-section h2 {
    padding: 0;
    margin: 0;
    font-size: 3em;
    font-weight: 300;
    line-height: 1em;
    text-transform: uppercase;
}

.banner .banner-top-section .text-section p {
    padding: 20px 0 0 0;
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    color: var(--light-grey-font-color);
    max-width: 450px;
    margin-left: auto;
    margin-right: 0;
}

.banner .banner-bottom-section {
    display: flex;
    width: 100%;
    margin-top: -74px;
}

.banner .banner-bottom-section .box-1 {
    background: var(--dark-grey-bg);
    padding: 40px;
    color: #fff;
    width: 369px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner .banner-bottom-section .box-1 p {
    margin: 0;
    padding: 10px 0 0 0;
    font-size: 1.1rem;
}

.banner .banner-bottom-section .box-1 p.light-grey {
    color: var(--light-grey-font-color-2);
    font-size: 1rem;
}

.banner .banner-bottom-section .box-1 a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px var(--light-grey-font-color-2);
    height: 48px;
    border-radius: 24px;
    color: #fff;
    text-decoration: none;
    margin-top: 20px;
}

.banner .banner-bottom-section .box-2 {
    padding: 40px;
    width: calc(100% - 636px);
    background: var(--light-grey-bg);
    display: flex;
    margin-top: 70px;
}

.banner .banner-bottom-section .box-2 .box-2-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 245px);
    padding-right: 40px;
}

.banner .banner-bottom-section .box-2 .box-2-1 p {
    margin: 0;
    padding: 0 0 10px 0;
}

.banner .search-box {
    background: #fff;
    height: 60px;
    padding: 0 10px;
    display: flex;
    width: 100%;
    align-items: center;
    border-radius: 30px;
    border: solid 1px var(--input-border-color);
    gap: 10px;
}

.banner .search-box input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    box-shadow: none;
    height: 40px;
    border: 0;
    width: calc(100% - 92px);
}

.banner .search-box input:focus {
    outline: 0 !important;
}

.banner .search-box a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-grey-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .banner-bottom-section .box-2 .box-2-2 {
    padding-left: 40px;
    border-left: solid 1px rgba(0, 0, 0, 0.2);
    width: 245px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.banner .banner-bottom-section .box-2-2 h2 {
    padding: 0;
    margin: 0;
    font-size: 2rem;
    font-weight: normal;
}

.banner .banner-bottom-section .box-2-2 h3 {
    padding: 10px 0 0 0;
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
}

.banner .banner-bottom-section .box-2-2 p {
    padding: 5px 0 0 0;
    margin: 0;
}

.banner .banner-bottom-section .box-2-2 a {
    display: flex;
    width: 100%;
    margin-top: 10px;
    border: solid 1px #000;
    height: 48px;
    border-radius: 24px;
    padding: 0 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: inherit;
    text-decoration: none;
    background: #fff;
}

.banner .banner-bottom-section .box-3 {
    padding: 20px;
    width: 267px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}


.banner .banner-bottom-section .box-3 a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: inherit;
    text-decoration: none;
}

.banner .search-box {
    position: relative;
    flex-direction: row;
}

.banner .search-box .search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 6px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
    max-height: 260px;
    overflow-y: auto;
    z-index: 20;
    padding: 4px 0;
    display: none;
}

.banner .search-box .search-result-item {
    padding: 8px 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.banner .search-box .search-result-item:hover {
    background: #f3f4f6;
}

.banner .search-box .search-result-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: #111827;
}

.banner .search-box .search-result-meta {
    font-size: 0.8rem;
    color: #6b7280;
}

.banner .search-box .search-result-description {
    font-size: 0.8rem;
    color: #6b7280;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 2.7em; /* ~2 lines */
}

.banner .search-box .search-result-avatar {
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    overflow: hidden;
    flex-shrink: 0;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .search-box .search-result-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .search-box .search-result-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}


.banner.banner-influencers .banner-top-section .text-section {
    text-align: left;
}

.banner.banner-influencers .banner-top-section {
    gap: 40px;
}

.banner.banner-influencers .banner-top-section .text-section p {
    max-width: 100%;
}

.banner.banner-influencers .banner-top-section .text-section {
    max-width: 100%;
}

.banner.banner-influencers .search-box {
    margin-top: 10px;
}

.banner.banner-influencers .banner-top-section .text-section {
    max-width: 100%;
}

.banner.banner-influencers .banner-top-section .text-section h2 {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

@media screen and (max-width: 1200px) {
    .banner .banner-bottom-section {
        flex-wrap: wrap;
        margin-top: -5px;
    }

    .banner .banner-bottom-section .box-1 {
        width: 50%;
        order: 1;
    }

    .banner .banner-bottom-section .box-2 {
        width: 100%;
        order: 3;
        margin: 0;
    }

    .banner .banner-bottom-section .box-3 {
        width: 50%;
        order: 2;
        margin: 0;
    }

    .banner .banner-bottom-section .box-2-2 h2 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 1024px) {
    .banner .banner-top-section {
        flex-direction: column-reverse;
        text-align: center;
        padding: 20px;
        border-bottom: solid 1px rgba(0, 0, 0, 0.2);
    }

    .banner .banner-top-section .img-section img {
        max-height: 300px;
    }

    .banner .banner-top-section .text-section {
        max-width: 100%;
        text-align: center;
    }

    .banner .banner-top-section .text-section h1 {
        font-size: 3rem;
    }

    .banner .banner-top-section .text-section h2 {
        font-size: 1.5rem;
        padding: 10px;
    }

    .banner.banner-influencers .banner-top-section .text-section h2 {
        padding: 10px 0;
    }

    .banner .banner-top-section .text-section p {
        padding: 0;
    }

    .banner .banner-bottom-section {
        margin: 0;
    }

    .banner.banner-influencers {
        padding: 0;
    }

    .banner.banner-influencers .banner-top-section {
        flex-direction: row;
        gap: 10px;
    }

    .banner.banner-influencers .banner-top-section .img-section img {
        max-width: 150px;
    }

    .banner.banner-influencers .banner-top-section .text-section {
        width: calc(100% - 160px);
    }

    .banner.banner-influencers .banner-top-section .text-section h2 {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 768px) {
    .banner {
        padding-bottom: 0px;
    }

    .banner .banner-bottom-section .box-1,
    .banner .banner-bottom-section .box-2 {
        padding: 20px;
    }
}

@media screen and (max-width: 600px) {
    .banner .banner-bottom-section .box-2 {
        flex-direction: column;
        padding: 0;
    }

    .banner .banner-bottom-section .box-2 .box-2-1 {
        width: 100%;
        padding: 20px;
    }

    .banner .banner-bottom-section .box-2 .box-2-2 {
        width: 100%;
        border-left: 0;
        border-top: solid 1px rgba(0, 0, 0, 0.2);
        padding: 20px;
    }

    .banner .banner-bottom-section .box-1 {
        width: 100%;
        order: 1;
    }

    .banner .banner-bottom-section .box-2 {
        width: 100%;
        order: 2;
        margin: 0;
    }

    .banner .banner-bottom-section .box-3 {
        width: 100%;
        order: 3;
        margin: 0;
        border-bottom: solid 1px rgba(0, 0, 0, 0.2);
    }

    .banner.banner-influencers .banner-top-section .img-section {
        display: none;
    }

    .banner.banner-influencers .banner-top-section .text-section {
        width: 100%;
    }
}

.influencers {
    padding: 50px 20px;
}

.influencers h2 {
    padding: 0px 0 0 0;
    margin: 0;
    font-size: 2rem;
    font-weight: normal;
    text-align: center;
}

.influencers p {
    padding: 10px 0 0 0;
    margin: 0;
    text-align: center;
}

.influencers p a {
    color: inherit;
}

.influencers-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.influencers-list .each-influencer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.influencers-list .each-influencer h3 {
    margin: 0;
    padding: 0;
    font-size: 1.375rem;
}

.influencers-list .each-influencer .tags {
    background: var(--light-grey-bg);
    padding: 8px;
    border-radius: 8px;
    font-size: 0.875rem;
}

.influencers-list .each-influencer a {
    font-size: 0.875rem;
    color: inherit;
}

.influencers-details-list {
    padding: 20px;
}

.influencers-details-list .each-influencer-details {
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 30px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.influencers-details-list .each-influencer-details .top-section {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: flex-start;
}

.influencers-details-list .each-influencer-details .top-section .left-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.influencers-details-list .each-influencer-details .top-section .left-section .img-section {
    width: 86px;
    height: 86px;
    min-width: 86px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.influencers-details-list .each-influencer-details .top-section .left-section .img-section img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 86px;
    height: 86px;
}

.influencers-details-list .each-influencer-details .top-section .left-section .text-section h3 {
    margin: 0;
    padding: 0;
    font-size: 1.3rem;
}

.influencers-details-list .each-influencer-details .top-section .left-section .text-section p {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    padding: 5px 0;
}

.influencers-details-list .each-influencer-details .top-section .left-section .text-section .other-details {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}

.influencers-details-list .each-influencer-details .top-section .left-section .text-section .other-details .each-detail {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.875rem;
}

.influencers-details-list .each-influencer-details .top-section .right-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.influencers-details-list .each-influencer-details .top-section .right-section a {
    text-decoration: none;
    color: var(--light-grey-font-color);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    border: solid 1px var(--primary-button-color);
    background: #fff;
    white-space: nowrap;
}

.influencers-details-list .each-influencer-details .top-section .right-section a.highlighted {
    border-color: var(--highlight-color);
    background: var(--highlight-color);
    color: #fff;
}

.influencers-details-list .each-influencer-details .gallery-section {
    padding-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    overflow: auto;
}

.influencers-details-list .each-influencer-details .gallery-section img{
    height: 280px;
    border-radius: 10px;
}

.subscribed-badge {
    position: absolute;
    top: 21px;
    left: -41px;
    background: #db3530;
    color: white;
    padding: 6px 38px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 20;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transform: rotate(-45deg);
    transform-origin: center;
    display: block;
    text-align: center;
    white-space: nowrap;
    line-height: 1.3;
    pointer-events: none;
}

.subscribed-badge svg {
    display: none;
}


@media screen and (max-width: 768px) {
    .influencers {
        padding: 20px;
        border-bottom: solid 1px rgba(0, 0, 0, 0.2);
    }

    .influencers h2 {
        font-size: 1.5rem;
    }

    .influencers-list {
        gap: 15px;
    }

    .influencers-list .each-influencer {
        width: calc(50% - 15px);
    }

    .influencers-list .each-influencer .img-holder img {
        width: 120px;
        height: 120px;
    }

    .influencers-details-list .each-influencer-details .top-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .influencers-details-list .each-influencer-details .top-section .left-section {
        flex-direction: column;
    }

    .influencers-details-list .each-influencer-details .top-section .right-section {
        margin-top: 15px;
        width: 100%;
    }

    .influencers-details-list .each-influencer-details .top-section .right-section a {
        width: 100%;
    }

    .influencers-details-list .each-influencer-details .top-section .left-section .text-section .other-details {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .influencers-list .each-influencer {
        width: 100%;
    }
}