.blog-content .csr-explore-btn {
    border-radius: 30px;
    background-image:
        linear-gradient(white, white),
        /* inner fill */
        linear-gradient(to right, #00793A, #ffc107);
    /* border gradient */
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.blog-content .csr-explore-btn a {
    align-items: center;
    gap: 10px;
    background-color: #ff0;
    color: #00793A;
    font-weight: bold;
    font-size: 14px;
    padding: 10px 20px;
    border: 3px solid white;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.blog-content .csr-explore-btn a:hover {
    background-color: #ffc107;
}

/* #quenchthethirst */
.quenchthethirst-section-header {
    background-color: #FFFEF0;
    padding: 0.7rem;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.quenchthethirst-section-title {
    text-transform: uppercase;
    font-weight: bold;
    color: #00793A;
    margin: 0;
}

.csr-title-section {
    color: #00793A;
    font-weight: bold;
    font-size: 40px;
}

.quenchthethirst-section-title .hashtag {
    color: #000;
}

.highlight-green {
    color: #00793A;
}

.quenchthethirst-submit-btn {
    background-color: #fef200;
    border: 2px solid #00793A;
    color: #000;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.custom-submit-btn:hover {
    background-color: #e6db00;
    border-color: #00793A;
    color: #000;
}

.quenchthethirst-card {
    height: 250px;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.quenchthethirst-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.quenchthethirst-card:hover img {
    transform: scale(1.2);
}