.casinos-list-wrap .entry-content {
    padding-bottom: 25px;
}

.casinos-list-wrap {
    padding-top: 30px;
}

.casinos-list-wrap .entry-content h2 {
    color: #cc9922;
    font-size: 28px;
}

.casino-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    transition: box-shadow 0.3s ease;
    font-size: 1rem; /* Adjusted overall font size */
}

.casino-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.casino-card__logo {
    flex: 0 0 20%;
    max-width: 20%;
    text-align: center;
}

.casino-card__logo-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 1.4rem;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.casino-card__logo-inner img {
    max-width: 180px;
    max-height: 70px;
    object-fit: contain;
    min-height: 90px;
}

.casino-card__content {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0 1rem;
}

.casino-card__title {
    display: block;
    font-size: 20px; /* Adjusted to 20px */
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.casino-card__benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.casino-card__benefits li {
    font-size: 1.2rem; /* Adjusted to match the new design */
    color: #555;
    margin-bottom: 0.5rem;
    padding-left: 1.4rem;
    position: relative;
}

.casino-card__benefits li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #27ae60;
}

.casino-card__offer {
    flex: 0 0 35%;
    max-width: 35%;
    padding: 0 1rem;
    font-weight: 700;
    text-align: center;
}

.casino-card__offer strong {
    color: #ff5e23;
    font-size: 24px;
}

.casino-card__offer p {
    margin-bottom: 0 !important;
    font-size: 18px !important;
}

.casino-card__buttons {
    width: 100%;
    flex: 0 0 25%;
    max-width: 25%;
    padding: 1rem;
    text-align: center;
}

/* Review Link */
.casino-card__review-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 1.3rem; /* Adjusted to fit design */
    color: #000;
    text-decoration: underline !important;
    transition: color 0.3s ease;
}

.casino-card__review-link:hover {
    color: #000;
}

.casino-play-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    font-size: 1.4rem; /* Adjusted to match design */
    font-weight: 600;
    padding: 1.5rem 1.7rem;
    background-color: #28a745;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.casino-play-button:hover {
    background-color: #218838;
    transform: translateY(-2px);
    color: #fff;
}

.casino-play-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.3);
}

@media (max-width: 1024px) {
    .casino-card__logo,
    .casino-card__content,
    .casino-card__offer,
    .casino-card__buttons {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .casino-card {
        flex-direction: column;
    }

    .casino-card__logo,
    .casino-card__content,
    .casino-card__offer,
    .casino-card__buttons {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }

    .casino-card__content {
        text-align: center;
    }

    .casino-card__offer {
        font-size: 1.3rem;
    }

    .casino-play-button {
        width: 100%;
        padding: 1.5rem;
    }

    .casino-card__benefits {
        display: none;
    }

    .casino-card__logo {
        width: 100%;
    }
}