/* style/expert-analysis-daily-picks.css */

/* Variables */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f5f5f5;
  --bg-white: #ffffff;
  --border-light: #e0e0e0;
  --button-login: #EA7C07; /* Custom color for login */
}

/* Base styles for the page content */
.page-expert-analysis-daily-picks {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default dark text on light background */
  background-color: var(--bg-white); /* Default white background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-expert-analysis-daily-picks__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-expert-analysis-daily-picks__section {
  padding: 60px 0;
  background-color: var(--bg-white);
}

.page-expert-analysis-daily-picks__section:nth-of-type(even) {
  background-color: var(--bg-light);
}

.page-expert-analysis-daily-picks__section-title {
  font-size: 36px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-expert-analysis-daily-picks__description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-dark);
}

/* Hero Section */
.page-expert-analysis-daily-picks__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background: linear-gradient(135deg, var(--primary-color) 0%, #a7e1f7 100%); /* Light blue gradient */
  color: var(--text-light);
}

.page-expert-analysis-daily-picks__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-expert-analysis-daily-picks__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-expert-analysis-daily-picks__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  filter: none; /* Ensure no filter changes image color */
}

.page-expert-analysis-daily-picks__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-expert-analysis-daily-picks__main-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-expert-analysis-daily-picks__hero-content .page-expert-analysis-daily-picks__description {
  color: var(--text-light);
  font-size: 20px;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-expert-analysis-daily-picks__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-login); /* Using custom login color for CTA */
  color: var(--text-light);
  text-decoration: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%; /* For mobile button responsiveness */
  box-sizing: border-box; /* For mobile button responsiveness */
  white-space: normal; /* For mobile button responsiveness */
  word-wrap: break-word; /* For mobile button responsiveness */
}

.page-expert-analysis-daily-picks__cta-button:hover {
  background: #e06c00; /* Slightly darker orange */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Features Grid (Introduction Section) */
.page-expert-analysis-daily-picks__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-expert-analysis-daily-picks__feature-item {
  background: var(--bg-white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-light);
}

.page-expert-analysis-daily-picks__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-expert-analysis-daily-picks__feature-item img {
  width: 100%;
  height: auto;
  max-width: 400px; /* Recommended size for content images */
  margin-bottom: 20px;
  border-radius: 8px;
  filter: none; /* Ensure no filter changes image color */
  min-width: 200px; /* Minimum image size */
  min-height: 200px; /* Minimum image size */
  object-fit: cover;
}

.page-expert-analysis-daily-picks__feature-item h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-expert-analysis-daily-picks__feature-item p {
  font-size: 16px;
  color: var(--text-dark);
}

/* Match List (Today's Picks Section) */
.page-expert-analysis-daily-picks__match-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-expert-analysis-daily-picks__match-card {
  background: var(--bg-white);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.page-expert-analysis-daily-picks__match-card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  filter: none; /* Ensure no filter changes image color */
  min-width: 200px; /* Minimum image size */
  min-height: 200px; /* Minimum image size */
}

.page-expert-analysis-daily-picks__match-content {
  padding: 25px;
}

.page-expert-analysis-daily-picks__match-content h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-expert-analysis-daily-picks__match-content p {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.page-expert-analysis-daily-picks__match-content strong {
  color: var(--button-login);
}

.page-expert-analysis-daily-picks__btn-primary {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%; /* For mobile button responsiveness */
  box-sizing: border-box; /* For mobile button responsiveness */
  white-space: normal; /* For mobile button responsiveness */
  word-wrap: break-word; /* For mobile button responsiveness */
}

.page-expert-analysis-daily-picks__btn-primary:hover {
  background: #1e87b7; /* Slightly darker primary color */
}

.page-expert-analysis-daily-picks__cta-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px dashed var(--border-light);
}

.page-expert-analysis-daily-picks__cta-bottom p {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 30px;
  font-weight: 500;
}

/* Betting Tips Section */
.page-expert-analysis-daily-picks__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-expert-analysis-daily-picks__tip-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid var(--border-light);
}

.page-expert-analysis-daily-picks__tip-card img {
  width: 100%;
  height: auto;
  max-width: 600px; /* Recommended size for content images */
  margin-bottom: 20px;
  border-radius: 8px;
  filter: none; /* Ensure no filter changes image color */
  min-width: 200px; /* Minimum image size */
  min-height: 200px; /* Minimum image size */
  object-fit: cover;
}

.page-expert-analysis-daily-picks__tip-card h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-expert-analysis-daily-picks__tip-card p {
  font-size: 16px;
  color: var(--text-dark);
}

/* How to Access Section */
.page-expert-analysis-daily-picks__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-expert-analysis-daily-picks__steps-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  background: var(--bg-white);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
}

.page-expert-analysis-daily-picks__step-icon {
  width: 50px;
  height: 50px;
  min-width: 50px; /* Prevent shrinking */
  background: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin-right: 20px;
}

.page-expert-analysis-daily-picks__step-content h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-expert-analysis-daily-picks__step-content p {
  font-size: 16px;
  color: var(--text-dark);
}

.page-expert-analysis-daily-picks__step-content a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-expert-analysis-daily-picks__step-content a:hover {
  color: #1e87b7;
}

/* Why Trust Our Experts Section */
.page-expert-analysis-daily-picks__why-trust-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}