/* style/resources-11-bet-safe-betting-tips.css */

/* Variables (if any, typically in shared.css) */
:root {
    --primary-color: #0A192F; /* Deep Navy Blue */
    --secondary-color: #FFD700; /* Bright Gold */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
}

.page-resources-11-bet-safe-betting-tips {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default text color for light background */
    background-color: var(--bg-light); /* Assuming body background is light/white */
}

.page-resources-11-bet-safe-betting-tips__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-11-bet-safe-betting-tips__text-block {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
}

.page-resources-11-bet-safe-betting-tips__text-center {
    text-align: center;
}

/* Sections */
.page-resources-11-bet-safe-betting-tips__section {
    padding: 60px 0;
    margin-bottom: 0; /* Remove default margin for sections */
}

.page-resources-11-bet-safe-betting-tips__dark-bg {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-resources-11-bet-safe-betting-tips__light-bg {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-resources-11-bet-safe-betting-tips__section-title {
    font-size: 36px;
    font-weight: 700;
    color: inherit; /* Inherit color from parent section */
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.2;
}

.page-resources-11-bet-safe-betting-tips__dark-bg .page-resources-11-bet-safe-betting-tips__section-title {
    color: var(--secondary-color); /* Gold titles on dark background */
}

/* CTA Button Styles */
.page-resources-11-bet-safe-betting-tips__cta-button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    box-sizing: border-box; /* Ensure padding/border included in width */
}

.page-resources-11-bet-safe-betting-tips__btn-primary {
    background-color: var(--secondary-color); /* Gold background */
    color: var(--primary-color); /* Dark text on gold */
    border: 2px solid var(--secondary-color);
}

.page-resources-11-bet-safe-betting-tips__btn-primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    border-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-11-bet-safe-betting-tips__btn-secondary {
    background-color: transparent;
    color: var(--secondary-color); /* Gold text */
    border: 2px solid var(--secondary-color);
}

.page-resources-11-bet-safe-betting-tips__btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color); /* Dark text on gold */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-11-bet-safe-betting-tips__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

/* Card Styles */
.page-resources-11-bet-safe-betting-tips__card {
    background-color: var(--text-light);
    color: var(--text-dark);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure cards in a grid have equal height */
    display: flex;
    flex-direction: column;
}

.page-resources-11-bet-safe-betting-tips__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-11-bet-safe-betting-tips__card-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-resources-11-bet-safe-betting-tips__card-description {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    flex-grow: 1; /* Allow description to take available space */
}

/* Image Styles */
.page-resources-11-bet-safe-betting-tips img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    filter: none; /* Ensure no filter is used */
}

.page-resources-11-bet-safe-betting-tips__card img {
    width: 100%;
    height: 250px; /* Fixed height for consistency in cards */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-resources-11-bet-safe-betting-tips__image-full-width {
    width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 10px;
}

/* List Styles */
.page-resources-11-bet-safe-betting-tips__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-resources-11-bet-safe-betting-tips__list-item {
    background-color: rgba(255, 255, 255, 0.1); /* Light background for list items on dark section */
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    color: var(--text-light); /* White text on dark section */
}

.page-resources-11-bet-safe-betting-tips__dark-bg .page-resources-11-bet-safe-betting-tips__list-item {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.page-resources-11-bet-safe-betting-tips__light-bg .page-resources-11-bet-safe-betting-tips__list-item {
    background-color: #ffffff;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.page-resources-11-bet-safe-betting-tips__list-item::before {
    content: '✅';
    margin-right: 10px;
    font-size: 1.2em;
    line-height: 1;
    flex-shrink: 0;
}