/* style/betting-brand-reviews.css */

/* General Styles */
.page-betting-brand-reviews {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.page-betting-brand-reviews__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-betting-brand-reviews__container--center-text {
    text-align: center;
}

/* Typography */
.page-betting-brand-reviews__hero-title,
.page-betting-brand-reviews__section-title {
    font-size: 2.8em;
    color: #007bff; /* Main color */
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
    line-height: 1.2;
}

.page-betting-brand-reviews__section-title {
    font-size: 2.2em;
    margin-top: 40px;
    margin-bottom: 30px;
}

.page-betting-brand-reviews__sub-title {
    font-size: 1.8em;
    color: #0056b3; /* Darker shade of main color for contrast */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-betting-brand-reviews__text,
.page-betting-brand-reviews__hero-description,
.page-betting-brand-reviews__review-description,
.page-betting-brand-reviews__feature-text {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 15px;
}

.page-betting-brand-reviews__hero-description {
    font-size: 1.2em;
    font-weight: 500;
    color: #222;
}

.page-betting-brand-reviews__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #444;
}

.page-betting-brand-reviews__list li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

/* Buttons */
.page-betting-brand-reviews__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 10px;
    text-align: center;
    cursor: pointer;
}

.page-betting-brand-reviews__btn--primary {
    background-color: #007bff; /* Main color */
    color: #fff;
    border: 2px solid #007bff;
}

.page-betting-brand-reviews__btn--primary:hover {
    background-color: #0056b3; /* Darker main color */
    border-color: #0056b3;
}

.page-betting-brand-reviews__btn--secondary {
    background-color: #ffc107; /* Accent color */
    color: #333;
    border: 2px solid #ffc107;
}

.page-betting-brand-reviews__btn--secondary:hover {
    background-color: #e0a800; /* Darker accent color */
    border-color: #e0a800;
}

.page-betting-brand-reviews__btn--link {
    background: none;
    color: #007bff;
    border: 1px solid #007bff;
    padding: 8px 15px;
    margin: 5px 0;
}

.page-betting-brand-reviews__btn--link:hover {
    background-color: #e6f2ff;
    color: #0056b3;
}

.page-betting-brand-reviews__btn--large {
    padding: 15px 35px;
    font-size: 1.1em;
}

/* Sections */
.page-betting-brand-reviews__hero {
    background: linear-gradient(135deg, #007bff, #4da3ff);
    padding: 80px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-betting-brand-reviews__hero-title,
.page-betting-brand-reviews__hero-description {
    color: #fff;
}

.page-betting-brand-reviews__section {
    padding: 60px 0;
}

.page-betting-brand-reviews__section--highlight {
    background-color: #e9f7ff; /* Light blue background */
}

.page-betting-brand-reviews__section--gray-bg {
    background-color: #f2f2f2;
}

.page-betting-brand-reviews__section--cta-final {
    background-color: #007bff; /* Main color */
    color: #fff;
    padding: 80px 0;
}

.page-betting-brand-reviews__section--cta-final .page-betting-brand-reviews__section-title,
.page-betting-brand-reviews__section--cta-final .page-betting-brand-reviews__text {
    color: #fff;
}

/* Feature Grid for 69 win review */
.page-betting-brand-reviews__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-betting-brand-reviews__feature-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-betting-brand-reviews__feature-item:hover {
    transform: translateY(-5px);
}

.page-betting-brand-reviews__feature-img {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.page-betting-brand-reviews__feature-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 10px;
}

/* Review List */
.page-betting-brand-reviews__review-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-betting-brand-reviews__review-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-betting-brand-reviews__review-title {
    font-size: 1.3em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-betting-brand-reviews__review-title a {
    color: #007bff;
    text-decoration: none;
}

.page-betting-brand-reviews__review-title a:hover {
    text-decoration: underline;
    color: #0056b3;
}

.page-betting-brand-reviews__review-description {
    font-size: 0.95em;
    color: #555;
    flex-grow: 1;
    margin-bottom: 15px;
}

/* Images */
.page-betting-brand-reviews__img--full-width {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* CTA Block */
.page-betting-brand-reviews__cta-block {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-betting-brand-reviews__cta-text {
    font-size: 1.3em;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 20px;
}

/* Floating CTA */
.page-betting-brand-reviews__floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ffc107; /* Accent color */
    color: #333;
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-betting-brand-reviews__floating-cta:hover {
    transform: translateY(-5px);
    background-color: #e0a800; /* Darker accent color */
}

.page-betting-brand-reviews__floating-cta a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.page-betting-brand-reviews__floating-cta-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 50%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-betting-brand-reviews__hero-title {
        font-size: 2.2em;
    }

    .page-betting-brand-reviews__section-title {
        font-size: 1.8em;
    }

    .page-betting-brand-reviews__sub-title {
        font-size: 1.5em;
    }

    .page-betting-brand-reviews__btn {
        padding: 10px 20px;
        font-size: 0.95em;
    }

    .page-betting-brand-reviews__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-betting-brand-reviews__feature-grid,
    .page-betting-brand-reviews__review-list {
        grid-template-columns: 1fr;
    }

    .page-betting-brand-reviews__floating-cta {
        bottom: 15px;
        right: 15px;
        padding: 8px 12px;
    }

    .page-betting-brand-reviews__floating-cta span {
        font-size: 0.9em;
    }

    .page-betting-brand-reviews__floating-cta-icon {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .page-betting-brand-reviews__hero-title {
        font-size: 1.8em;
    }

    .page-betting-brand-reviews__section-title {
        font-size: 1.6em;
    }

    .page-betting-brand-reviews__hero-description {
        font-size: 1em;
    }

    .page-betting-brand-reviews__btn {
        margin: 5px;
    }

    .page-betting-brand-reviews__floating-cta {
        bottom: 10px;
        right: 10px;
        padding: 6px 10px;
    }

    .page-betting-brand-reviews__floating-cta span {
        display: none; /* Hide text on very small screens */
    }

    .page-betting-brand-reviews__floating-cta a {
        padding: 0;
    }

    .page-betting-brand-reviews__floating-cta-icon {
        margin-right: 0;
    }
}