.csaf-wrapper {
  
    margin: 0 auto;
}

.csaf-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.csaf-selects {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
}

.csaf-selects select {
   padding: 10px;
    font-size: 16px !important;
    background: #fcfcfc;
    border: 1px solid #ff591a;
    border-radius: 6px;
    width: 100%;
    font-weight: 400;
    box-sizing: border-box;
    color: #212121;
	appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 2.5rem;
    background: url("data:image/svg+xml,%3Csvg fill='black' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat right 0.5rem center;
    background-color: #fff;
    background-size: 1.5rem;
    border: 1px solid #f05a28;
    border-radius: 5px;
	cursor:pointer;
}
.csaf-selects select option:hover {
    background: -webkit-linear-gradient(358deg, #7d2efa, #4e09bc) !important;
    color: white !important;
	cursor:pointer !important;
}
#csaf-reset.csaf-reset-btn {
  padding: 12px 65px !important;
    font-size: 16px;
    border-radius: 33px !important;
    color: #fff;
    border: none !important;
    background: -webkit-linear-gradient(328deg, #FF7725, #FC52B3) !important;
    cursor: pointer;
    height: fit-content;
    transition-duration: 0.5s;
    font-weight: 600 !important;
    font-family: "Poppins";
}
.csaf-reset-btn:hover {
	background:#FF7725;
}
.csaf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.csaf-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.csaf-card-top {
    height: 150px;
    background-size: cover;
    background-position: center;
}

.csaf-card-bottom {
    padding: 15px;
}

.csaf-tag {
    font-size: 14px;
    font-weight: 500;
    color: #FF591A;
    margin-bottom: 5px;
}

.csaf-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
	color:#212121;
}

.csaf-excerpt {
    font-size: 18px;
    color: #212121;
	margin-top:20px;
	margin-bottom:10px;
}
/* Tablet: 768px - 1024px */
@media screen and (max-width: 1024px) {
    .csaf-grid {
        grid-template-columns: 1fr 1fr;
    }

    .csaf-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .csaf-selects {
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    #csaf-reset.csaf-reset-btn {
        width: 100%;
        text-align: center;
    }
}

/* Mobile: ≤ 767px */
@media screen and (max-width: 767px) {
    .csaf-grid {
        grid-template-columns: 1fr;
    }

    .csaf-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .csaf-selects {
        grid-template-columns: 1fr;
    }

    .csaf-selects select {
        width: 100%;
    }

    #csaf-reset.csaf-reset-btn {
        width: 100%;
        padding: 12px 20px !important;
    }
}
