#page-offers-index {
    .offers-listing-container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: row;

        .offers-listing-left-column {
            max-width: 15%;
            width: 15%;
            padding: 2em;
            border-right: 1px solid #f0f0f0;
            box-shadow: 6px 0 15px #ececec;

            .offers-listing-team-info {
                font-size: 1.3em;
            }

            .offers-listing-team-info-details {
                text-align: justify;
            }
        }

        .offers-listing-right-column {
            width: 100%;
            height: auto;
            display: flex;
            flex-direction: column;
            padding: 2em;
            background: var(--color-beige-100);

            .offers-listing-total-count {
                font-size: 25px;
                margin-bottom: 5px;
            }

            .offers-listing-page {
                margin: 0 0 3em 0;
            }

            .offers-listing-offers-container {
                display: flex;
                flex-wrap: wrap;
                gap: 2em;
                justify-content: center;
            }
        }

        &.no-offer {
            height: 100%;
        }
    }
}
