.ideas-wrapper {
    > .intro {
        margin-top: 8rem;
        margin-bottom: 5rem;
        h1 {
            margin-bottom: 0;
        }
    }
    .row {
        --bs-gutter-x: 3.5rem;
    }
}

#idea-results {
    .item {
        display: flex;
        gap: 2.5rem;
        margin-bottom: 4.75rem;
        color: inherit;
        text-decoration: none;
        .image {
            position: relative;
            flex: 1 0 207px;
            width: 207px;
            max-width: 207px;
            height: 207px;
            border-radius: var(--bs-border-radius);
            overflow: hidden;
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            .icon {
                position: absolute;
                bottom: 10px;
                left: 8px;
                width: 47px;
                height: 47px;
                background-color: var(--bs-black);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 10px;
            }
        }
        .text {
            font-family: "Source Serif 4", serif;
            font-size: 1.25rem;
            color: #5E5D69;
        }
        .meta {
            display: flex;
            align-items: flex-end;
            gap: 2rem;
            margin-top: 1.5rem;
            color: #5E5D69;
            .authors {
                list-style: none;
                padding: 0;
                margin: 0;
                display: flex;
                gap: 1rem;
                > li {
                    flex: 1 0 40px;
                    max-width: 40px;
                    border-radius: 50%;
                    overflow: hidden;
                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }
                }
            }
        }
    }
}

.videos-wrapper {
    margin-top: 5.5rem;
}

.post-slider {
    margin-top: 4.5rem;
    .swiper-slide {
        height: auto;
    }
    .post {
        position: relative;
        display: flex;
        flex-direction: column;
        height: 100%;
        text-decoration: none;
        color: var(--bs-black);
        .image {
            border-radius: var(--bs-border-radius);
            overflow: hidden;
            position: relative;
            aspect-ratio: 1.5/1;
            line-height: 0;
            > img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
        .title {
            position: absolute;
            z-index: 1;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.5rem;
        }
    }
    .swiper-nav-wrapper {
        display: flex;
        align-items: center;
        gap: 3rem;
        .swiper-arrows {
            position: relative;
            display: flex;
            align-items: center;
            gap: 1rem;
            height: 1.5rem;
            .swiper-button-next,
            .swiper-button-prev {
                position: static;
                margin-top: 0;
            }
        }
    }
    .swiper-button-next, .swiper-button-prev {
        --swiper-theme-color: var(--bs-light);
        background-color: var(--bs-black);
        border: solid 1.5px var(--bs-black);
    }
    .swiper-button-next.swiper-button-disabled,
    .swiper-button-prev.swiper-button-disabled {
        --swiper-theme-color: var(--bs-black);
        background-color: var(--bs-light);
        border-color: var(--bs-black);
    }
}

.ideas-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}


.faqs-wrapper {
    margin-top: 4.5rem;
    margin-bottom: 3rem;
}


#media-type {
  padding: 4.5rem 0;
}