.bc-report-preview-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 0;
}

.bc-report-list__filters {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(260px, 1.1fr) 190px;
    gap: 18px;
    align-items: center;
    margin-bottom: 42px;
}

.bc-report-list__field,
.bc-report-list__button {
    min-height: 40px;
    border: 2px solid #58b1cf;
    font-size: 18px;
    outline: none;
    color: black;
}

input.bc-report-list__field::placeholder {
    color: black !important;
}

.bc-report-list__button {
    background: #58b1cf;
    color: white;
    transition: all ease-in-out 0.3s;
}

.bc-report-list__button:hover,
.bc-report-list__button:active {
    background: #32c6e9;
}

.bc-report-list__field {
    width: 100%;
    padding: 0 18px;
    background: #fff;
}

select.bc-report-list__field {
    font-family: inherit;
    padding-right: 40px;
}

.bc-report-list__field-select-wrap {
    position: relative;
}

.bc-report-list__field-select-wrap:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url('/wp-content/plugins/bc-report-seller/assets/img/arrow-down-angle.svg');
    position: absolute;
    top: 10px;
    right: 18px;
    z-index: 7;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.85;
}



.bc-report-preview-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}

.bc-report-preview-section__title {
    margin: 0;
    font-size: clamp(28px, 3vw, 40px);
}

.bc-report-preview-section__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    background: #58b1cf;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.bc-report-preview-section__empty {
    padding: 24px;
    background: #f8f8f3;
}

.bc-report-preview-grid {
    display: grid;
    gap: 28px;
}

.bc-report-preview-grid--split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bc-report-preview-grid--stacked {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 30px;
}

.bc-report-preview {
    background: #fff;
    min-width: 0;
}

.bc-report-preview--split {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    padding: 22px;
    border: 1px solid #d9e8ee;
}

.bc-report-preview--stacked {
    display: flex;
    flex-direction: column;
    padding: 0 6px;
}

.bc-report-preview__thumb {
    background: #f4f8f9;
    overflow: hidden;
}

.bc-report-preview__thumb-link {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.bc-report-preview--split .bc-report-preview__thumb {
    aspect-ratio: 1 / 1;
}

.bc-report-preview--stacked .bc-report-preview__thumb {
    /* aspect-ratio: 1.3 / 1; */
    margin-bottom: 25px;
    height: 250px;
}

.bc-report-preview__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bc-report-preview__thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 18px;
    color: #4ca8c6;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #edf7fb 0%, #ffffff 100%);
}

.bc-report-preview__body {
    min-width: 0;
}

.bc-report-preview--stacked .bc-report-preview__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.bc-report-preview__title {
    margin: 0 0 10px;
    color: #333333;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.25;
    font-family: "Poppins", sans-serif;
}

.bc-report-preview__title a {
    color: inherit;
    text-decoration: none;
}

.bc-report-preview__meta {
    margin: 0 0 12px;
    color: #666;
    font-size: 16px;
}

.bc-report-preview__excerpt {
    margin: 0 0 16px;
    line-height: 1.3;
    color: #757575;
    margin-top: 0.45rem;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bc-report-preview__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
}

.bc-report-preview__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 35px;
    padding: 0 8px;
    background: #58b1cf;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: all ease-in-out 0.3s;
}

.bc-report-preview__cta:hover,
.bc-report-preview__cta:active {
    background: #32c6e9;
    color: white !important;
    text-decoration: none !important;
}

.bc-report-preview--stacked .bc-report-preview__cta {
    min-height: 25px;
    min-width: 90px;
    padding: 5px 20px;
    font-size: 17px;
    font-weight: 400;
}

.bc-report-preview__cta img {
    height: 25px;
    width: auto;
    margin-left: 5px;
}

.bc-report-preview__price {
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
}

.bc-report-preview--stacked .bc-report-preview__meta {
    color: #797979;
    font-size: 15px;
    font-family: "Lato", sans-serif;
}

.bc-report-preview--stacked .bc-report-preview__price {
    color: #000000;
    font-size: 18px;
    font-weight: 400;
}

@media (max-width: 1080px) {
    .bc-report-preview-grid--stacked {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .bc-report-preview-grid--split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .bc-report-preview-grid--stacked {
        grid-template-columns: 1fr;
    }

    .bc-report-preview--stacked .bc-report-preview__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .bc-report-preview--stacked .bc-report-preview__cta {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .bc-report-preview-section__header {
        align-items: stretch;
        flex-direction: column;
    }

    .bc-report-preview--split {
        grid-template-columns: 1fr;
    }
}
