/* style/expert-picks.css */
.page-expert-picks {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-expert-picks .highlight {
  color: #007bff;
}

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

.page-expert-picks__hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-expert-picks__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-expert-picks__hero > .page-expert-picks__container {
  position: relative;
  z-index: 1;
}

.page-expert-picks__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #fff;
}

.page-expert-picks__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e9ecef;
}

.page-expert-picks__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-expert-picks__btn--primary {
  background-color: #28a745;
  color: #fff;
}

.page-expert-picks__btn--primary:hover {
  background-color: #1e7e34;
  transform: translateY(-3px);
}

.page-expert-picks__btn--secondary {
  background-color: #007bff;
  color: #fff;
  border: 2px solid #007bff;
}

.page-expert-picks__btn--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-3px);
}

.page-expert-picks__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #007bff;
  color: #fff;
}

.page-expert-picks__btn--small:hover {
  background-color: #0056b3;
}

.page-expert-picks__section {
  padding: 80px 0;
  text-align: center;
}

.page-expert-picks__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-expert-picks__section-title {
  font-size: 2.8em;
  margin-bottom: 25px;
  color: #007bff;
  font-weight: bold;
}

.page-expert-picks__section-description {
  font-size: 1.15em;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555;
}

.page-expert-picks__why-trust .page-expert-picks__section-description {
  margin-bottom: 60px;
}

.page-expert-picks__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-expert-picks__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.page-expert-picks__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.page-expert-picks__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: #007bff;
}

.page-expert-picks__feature-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #007bff;
  font-weight: 600;
}

.page-expert-picks__feature-text {
  font-size: 1em;
  color: #666;
  line-height: 1.7;
}

.page-expert-picks__cta-text {
  font-size: 1.3em;
  font-weight: 500;
  margin-top: 60px;
  margin-bottom: 30px;
  color: #333;
}

.page-expert-picks__expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-expert-picks__expertise-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-expert-picks__expertise-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-expert-picks__expertise-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-expert-picks__expertise-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #007bff;
  font-weight: 600;
}

.page-expert-picks__expertise-text {
  font-size: 0.95em;
  color: #666;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-expert-picks__cta-bottom {
  background-color: #007bff;
  color: #fff;
  padding: 100px 0;
}

.page-expert-picks__cta-bottom .page-expert-picks__section-title {
  color: #fff;
}

.page-expert-picks__cta-bottom .page-expert-picks__section-description {
  color: #e9ecef;
  margin-bottom: 40px;
}

.page-expert-picks__cta-bottom .page-expert-picks__btn {
  margin: 0 15px;
}

.page-expert-picks__call-to-action {
  background-color: #f0f8ff;
  padding: 80px 0;
}

.page-expert-picks__call-to-action-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
  text-align: left;
}

.page-expert-picks__cta-image {
  flex: 1;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-expert-picks__cta-text-content {
  flex: 1;
}

.page-expert-picks__cta-text-content .page-expert-picks__section-title {
  text-align: left;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.page-expert-picks__cta-text-content .page-expert-picks__section-description {
  text-align: left;
  margin: 0 0 30px 0;
  max-width: none;
}

.page-expert-picks__detail-pages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-expert-picks__detail-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease;
}

.page-expert-picks__detail-item:hover {
  transform: translateY(-5px);
}

.page-expert-picks__detail-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-expert-picks__detail-title a {
  color: #007bff;
  text-decoration: none;
}

.page-expert-picks__detail-title a:hover {
  text-decoration: underline;
}

.page-expert-picks__detail-description {
  font-size: 0.95em;
  color: #666;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-expert-picks__copyright {
  text-align: center;
  padding: 30px 20px;
  background-color: #343a40;
  color: #adb5bd;
  font-size: 0.9em;
  margin-top: 50px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-expert-picks__hero-title {
    font-size: 2.8em;
  }

  .page-expert-picks__hero-subtitle {
    font-size: 1.2em;
  }

  .page-expert-picks__section-title {
    font-size: 2.2em;
  }

  .page-expert-picks__section-description {
    font-size: 1em;
  }

  .page-expert-picks__call-to-action-content {
    flex-direction: column;
    text-align: center;
  }

  .page-expert-picks__cta-image {
    max-width: 80%;
    margin-bottom: 30px;
  }

  .page-expert-picks__cta-text-content .page-expert-picks__section-title,
  .page-expert-picks__cta-text-content .page-expert-picks__section-description {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-expert-picks__hero {
    padding: 80px 0;
  }

  .page-expert-picks__hero-title {
    font-size: 2.2em;
  }

  .page-expert-picks__hero-subtitle {
    font-size: 1.1em;
  }

  .page-expert-picks__section {
    padding: 60px 0;
  }

  .page-expert-picks__section-title {
    font-size: 1.8em;
  }

  .page-expert-picks__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-expert-picks__cta-bottom .page-expert-picks__btn {
    margin: 10px 0;
    width: 100%;
    max-width: 300px;
  }

  .page-expert-picks__cta-bottom {
    padding: 80px 0;
  }
}

@media (max-width: 576px) {
  .page-expert-picks__hero-title {
    font-size: 1.8em;
  }

  .page-expert-picks__hero-subtitle {
    font-size: 1em;
  }

  .page-expert-picks__section-title {
    font-size: 1.6em;
  }

  .page-expert-picks__features-grid,
  .page-expert-picks__expertise-grid,
  .page-expert-picks__detail-pages-grid {
    grid-template-columns: 1fr;
  }

  .page-expert-picks__feature-item,
  .page-expert-picks__expertise-item,
  .page-expert-picks__detail-item {
    padding: 20px;
  }

  .page-expert-picks__feature-title {
    font-size: 1.4em;
  }

  .page-expert-picks__expertise-title {
    font-size: 1.3em;
  }

  .page-expert-picks__detail-title {
    font-size: 1.2em;
  }
}