/* Base layout variables (for all pages) */
:root {
  --content-gap: 24px;
  --content-gap-sm: 18px;
  --image-radius: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.10);
  --divider: rgba(0,0,0,0.06);
  --h2-size: 22px;
  --h2-size-sm: 20px;
  --h2-weight: 600;
  --h2-letter: 0.2px;
  --h2-underline-color: rgba(0,0,0,0.12);
  --h2-underline-width: 44px;
  --h2-underline-thickness: 2px;
}

/* Homepage-specific variables */
.view-featured {
  --content-gap-lg: 48px;
  --image-radius: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --h1-size: 36px;
  --h2-size: 26px;
  --h2-size-sm: 22px;
  --h2-letter: -0.3px;
  --section-padding: 60px;
  --section-padding-sm: 40px;
}

/* Legacy float-based content-with-image (kept for older pages) */
.content-with-image {
  position: relative;
  overflow: hidden;
  line-height: 1.8;
}

.content-with-image .content-image {
  float: left;
  margin: 0 30px 25px 0;
  max-width: 350px;
  height: auto;
  border-radius: var(--image-radius);
  box-shadow: var(--shadow);
}

/* Clear floats after content */
.content-with-image::after {
  content: "";
  display: table;
  clear: both;
}

/* Typography improvements */
.content-with-image p { margin-bottom: 18px; }

.content-with-image > p:first-of-type,
.content-with-image > div:first-child { margin-top: 0; }

/* Lists styling */
.content-with-image ul { margin: 20px 0 25px 0; padding-left: 20px; }
.content-with-image ul li { margin-bottom: 10px; line-height: 1.7; }

/* Homepage hero section */
.view-featured .home-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: var(--section-padding) 0;
  text-align: center;
}

.view-featured .home-hero h1 {
  font-size: var(--h1-size);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  color: #1a1a1a;
}

.view-featured .home-hero .lead {
  font-size: 20px;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Content sections with integrated images (homepage only) */
.view-featured .content-section {
  padding: var(--section-padding) 0;
}

.view-featured .content-section:nth-child(odd) {
  background: #f8f9fa;
}

.view-featured .section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--content-gap-lg);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.view-featured .section-grid.reverse {
  direction: rtl;
}

.view-featured .section-grid.reverse > * {
  direction: ltr;
}

.view-featured .section-content h2 {
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  letter-spacing: var(--h2-letter);
  margin-bottom: 20px;
  color: #1a1a1a;
}

.view-featured .section-content p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
  color: #444;
}

.view-featured .section-content strong {
  color: #2c5282;
  font-weight: 600;
}

.view-featured .section-content ul {
  margin: 20px 0;
  padding-left: 24px;
}

.view-featured .section-content ul li {
  margin-bottom: 12px;
  line-height: 1.7;
  color: #444;
}

.view-featured .section-image img {
  width: 100%;
  height: auto;
  border-radius: var(--image-radius);
  box-shadow: var(--shadow);
  display: block;
}

/* Hero intro section - distinct from content sections (homepage only) */
.view-featured .hero-intro-section {
  background: #fff;
  padding: 0 0 var(--section-padding) 0;
  border-bottom: 5px solid #e0e0e0;
}

.view-featured .hero-announcement {
  text-align: center;
  background: #98bf6c;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 18px;
}

.view-featured .hero-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.view-featured .hero-lead {
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #333;
}

.view-featured .hero-text {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 18px;
  color: #555;
}

.view-featured .hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Larger buttons in hero section (homepage only) */
.view-featured .hero-buttons .btn-primary,
.view-featured .hero-buttons .btn-secondary {
  padding: 15px 32px;
  font-size: 15px;
}

.view-featured .hero-buttons .btn-primary:hover,
.view-featured .hero-buttons .btn-secondary:hover {
  padding-bottom: 18px;
}

.btn-wrapper {
  display: inline-block;
}

.btn-primary {
  background-image: linear-gradient(-90deg, #42aee0, #70c4eb);
  color: white;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  font-size: 13px;
  border-bottom: 5px solid #0078a2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.btn-primary:hover {
  color: white;
  transform: translateY(3px);
  border-bottom: 2px solid #0078a2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  padding-bottom: 13px;
}

.btn-secondary {
  background-image: linear-gradient(-90deg, #8b6d51, #a8876a);
  color: white;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  font-size: 13px;
  border-bottom: 5px solid #5c4635;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.btn-secondary:hover {
  color: white;
  transform: translateY(3px);
  border-bottom: 2px solid #5c4635;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  padding-bottom: 13px;
}

/* Info cards section (awards, reviews, social) - homepage only */
.view-featured .info-cards-section {
  padding: var(--section-padding) 0;
  background: #fff;
}

.view-featured .info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--content-gap-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.view-featured .info-card {
  background: #fff;
  border-radius: var(--image-radius);
  box-shadow: var(--shadow);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.view-featured .info-card.dark {
  background: linear-gradient(135deg, #8b6d51, #8b6d51);
  color: #fff;
}

.view-featured .info-card.blue {
  background: linear-gradient(135deg, #45b0e2, #42aee0);
  color: #fff;
}

.view-featured .info-card.blue a {
  color: #fff;
}

.view-featured .info-card.blue h3 {
  color: #fff;
}

.view-featured .info-card.dark a {
  color: #fff;
}

.view-featured .info-card.dark h3 {
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}

/* Award card content (homepage only) */
.view-featured .award-content {
  text-align: center;
}

.view-featured .award-content img {
  border-radius: 16px;
  margin: 0 auto 16px;
}

.view-featured .award-guest {
  margin-top: 20px;
}

.view-featured .award-guest img {
  margin-right: 10px;
  vertical-align: middle;
}

.view-featured .award-stars {
  font-size: 22px;
  vertical-align: middle;
}

.view-featured .award-title {
  font-size: 16px;
  margin-top: 8px;
}

.view-featured .view-featured .btn-review {
  color: white;
  background: #da3768;
  margin-top: 12px;
  padding: 8px 20px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
}

/* Phone card content (homepage only) */
.view-featured .phone-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.view-featured .phone-hours {
  background: rgba(255,255,255,0.15);
  padding: 18px;
  border-radius: 8px;
  margin-bottom: 18px;
}

.view-featured .phone-hours p {
  font-size: 14px;
  margin: 0 0 12px 0;
  line-height: 1.6;
}

.view-featured .phone-hours p:last-child {
  margin-bottom: 0;
}

.view-featured .phone-hours strong {
  font-size: 15px;
}

.view-featured .phone-season {
  background: rgba(255,255,255,0.1);
  padding: 18px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 18px;
}

.view-featured .phone-season p {
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

.view-featured .phone-season strong {
  font-size: 15px;
}

.view-featured .phone-button-wrapper {
  margin-top: auto;
}

.view-featured .phone-button-wrapper .btn-primary {
  display: block;
  text-align: center;
  font-size: 16px;
}

/* Section buttons wrapper (homepage only) */
.view-featured .section-buttons {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Content links */
.view-featured .content-link,
.item-page .content-link {
  color: #2c5282;
  text-decoration: none;
  border-bottom: 2px solid #45b0e2;
}

.view-featured .content-link:hover,
.item-page .content-link:hover {
  color: #45b0e2;
}

/* Hero section link styling */
.view-featured .hero-link {
  color: #45b0e2;
  text-decoration: none;
  border-bottom: 2px solid #45b0e2;
  transition: all 0.2s ease;
}

.view-featured .hero-link:hover {
  color: #2c5282;
  border-bottom-color: #2c5282;
}

.view-featured .info-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 20px 0;
  color: #1a1a1a;
  text-align: center;
}

.view-featured .info-card.dark h3 {
  color: #fff;
}

.view-featured .info-card img {
  max-width: 100%;
  height: auto;
}

.view-featured .info-card .btn {
  display: inline-block;
  margin-top: 12px;
}

.view-featured .info-card-content {
  flex: 1;
}

.view-featured .info-card-content p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.view-featured .info-card-content p:last-child {
  margin-bottom: 0;
}

/* Logo image with background (homepage only) */
.view-featured .section-image img.logo {
  background: #fff;
  padding: 40px;
}

/* Awards and Reviews Card Styles */
.view-featured .awards-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.view-featured .awards-image-wrapper {
  display: block;
  text-align: center;
}

.view-featured .awards-image {
  max-width: 140px !important;
  width: 140px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.view-featured .awards-reviews-box {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.view-featured .awards-stars {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 8px;
}

.view-featured .awards-name {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.view-featured .info-card.dark .awards-link {
  display: inline-block;
  background: #fff;
  color: #333 !important;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.view-featured .info-card.dark .awards-link:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  color: #333 !important;
  text-decoration: none;
}

/* Phone Reception Card Styles */
.view-featured .phone-reception-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.view-featured .phone-hours-box {
  background: rgba(255,255,255,0.15);
  padding: 18px;
  border-radius: 8px;
  margin-bottom: 18px;
}

.view-featured .phone-hours-box p {
  font-size: 14px;
  margin: 0 0 12px 0;
  line-height: 1.6;
  text-align: left;
}

.view-featured .phone-hours-box p:last-child {
  margin-bottom: 0;
}

.view-featured .phone-hours-box strong {
  font-size: 15px;
}

.view-featured .phone-season-box {
  background: rgba(255,255,255,0.1);
  padding: 18px;
  border-radius: 8px;
  text-align: left;
  margin-bottom: 18px;
}

.view-featured .phone-season-box p {
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

.view-featured .phone-season-box strong {
  font-size: 15px;
}

.view-featured .phone-cta-wrapper {
  margin-top: auto;
}

.view-featured .phone-cta-wrapper .btn-primary {
  display: block;
  text-align: center;
  font-size: 16px;
}

/* Social Media Card Styles */
.view-featured .social-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 20px;
}

.view-featured .social-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
  justify-content: center;
}

.view-featured .social-btn {
  color: white;
  padding: 14px 20px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.view-featured .social-btn-facebook {
  background: #1877F2;
}

.view-featured .social-btn-facebook:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  background: #166FE5;
  color: white;
}

.view-featured .social-btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.view-featured .social-btn-instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  filter: brightness(1.1);
  color: white;
}

.view-featured .social-footer-text {
  margin-top: 20px;
}

.view-featured .social-footer-text p {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}

.view-featured .social-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Responsive breakpoints for homepage sections */
@media (max-width: 992px) {
  .view-featured .section-grid {
    grid-template-columns: 1fr;
    gap: var(--content-gap);
  }
  
  .view-featured .section-grid.reverse {
    direction: ltr;
  }
  
  .view-featured .content-section {
    padding: var(--section-padding-sm) 0;
  }
  
  .view-featured .home-hero {
    padding: var(--section-padding-sm) 0;
  }
  
  .view-featured .home-hero h1 {
    font-size: 28px;
  }
  
  .view-featured .home-hero .lead {
    font-size: 18px;
  }
  
  .view-featured .section-content h2 {
    font-size: var(--h2-size-sm);
  }
  
  .view-featured .hero-intro-section {
    padding: 0 0 var(--section-padding-sm) 0;
  }
  
  .view-featured .hero-title {
    font-size: 30px;
  }
  
  .view-featured .hero-lead {
    font-size: 17px;
  }
  
  .view-featured .hero-text {
    font-size: 16px;
  }
  
  .view-featured .info-cards-section {
    padding: var(--section-padding-sm) 0;
  }
  
  .view-featured .info-cards-grid {
    grid-template-columns: 1fr;
    gap: var(--content-gap);
  }
  
  .content-with-image .content-image { 
    max-width: 300px; 
    margin: 0 25px 20px 0; 
  }
}

@media (max-width: 768px) {
  /* Add container padding for mobile */
  .view-featured .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .view-featured .home-hero h1 {
    font-size: 24px;
  }
  
  .view-featured .home-hero .lead {
    font-size: 16px;
  }
  
  .view-featured .section-content h2 {
    font-size: 20px;
    margin-bottom: 16px;
  }
  
  .view-featured .content-section {
    padding: 30px 0;
  }
  
  .view-featured .home-hero {
    padding: 30px 0;
  }
  
  .view-featured .hero-intro-section {
    padding: 0 0 30px 0;
  }
  
  .view-featured .hero-title {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 18px;
  }
  
  .view-featured .hero-lead {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 14px;
  }
  
  .view-featured .hero-text {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 14px;
  }
  
  .view-featured .hero-announcement {
    font-size: 14px;
    padding: 10px 16px;
    margin-bottom: 20px;
    line-height: 1.4;
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
  }
  
  .view-featured .hero-buttons {
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }
  
  .view-featured .hero-buttons .btn-wrapper {
    width: 100%;
  }
  
  .view-featured .hero-buttons .btn-primary,
  .view-featured .hero-buttons .btn-secondary {
    width: 100%;
    text-align: center;
    display: block;
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .view-featured .section-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .view-featured .section-buttons .btn-wrapper {
    width: 100%;
  }
  
  .view-featured .section-buttons .btn-primary,
  .view-featured .section-buttons .btn-secondary {
    width: 100%;
    text-align: center;
    display: block;
  }
  
  .view-featured .section-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 14px;
  }
  
  .view-featured .section-image {
    margin-bottom: 0;
  }
  
  .view-featured .section-image img {
    border-radius: 8px;
  }
  
  .view-featured .info-cards-section {
    padding: 30px 0;
  }
  
  .view-featured .info-card {
    padding: 20px;
  }
  
  .view-featured .info-card h3 {
    font-size: 18px;
    margin-bottom: 14px;
  }
  
  .content-with-image .content-image { 
    float: none; 
    display: block; 
    margin: 0 auto 30px; 
    max-width: 100%; 
  }
}

@media (max-width: 480px) {
  .view-featured .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .view-featured .hero-title {
    font-size: 22px;
  }
  
  .view-featured .hero-announcement {
    font-size: 13px;
    padding: 8px 12px;
  }
  
  .view-featured .section-content h2 {
    font-size: 18px;
  }
  
  .view-featured .content-section {
    padding: 24px 0;
  }
  
  .view-featured .info-card {
    padding: 16px;
  }
}

/* Global H2 restyle scoped to article content and homepage article */
[itemprop="articleBody"] h2,
#sp-component article.item h2 {
  clear: none;
  margin-top: var(--content-gap-lg);
  margin-bottom: 18px;
  font-size: var(--h2-size);
  line-height: 1.4;
  font-weight: var(--h2-weight);
  letter-spacing: var(--h2-letter);
  position: relative;
}
[itemprop="articleBody"] h2:first-of-type,
#sp-component article.item h2:first-of-type { margin-top: 0; }
[itemprop="articleBody"] h2::after,
#sp-component article.item h2::after {
  content: "";
  display: block;
  width: var(--h2-underline-width);
  height: var(--h2-underline-thickness);
  background: var(--h2-underline-color);
  margin-top: 8px;
  border-radius: 1px;
}

/* Modern media block: image in its own column, text in another */
.media-block {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: var(--content-gap);
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--divider);
  margin-bottom: var(--content-gap);
}

.media-block.right { grid-template-columns: 1fr 360px; }

.media-block .media-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--image-radius);
  box-shadow: var(--shadow);
}

.media-block.sticky .media-image { position: sticky; top: 20px; }
.media-block.right .media-image { order: 2; }

/* Intro content rhythm inside media-block */
.media-block .media-content > *:first-child { margin-top: 0; }
.media-block .media-content > *:last-child { margin-bottom: 0; }
.media-block .media-content p { margin-bottom: 16px; line-height: 1.75; }
.media-block .media-content h2 { margin-top: 2px; margin-bottom: 12px; font-size: var(--h2-size); line-height: 1.35; font-weight: var(--h2-weight); letter-spacing: var(--h2-letter); position: relative; }
.media-block .media-content h2::after { content: ""; display: block; width: var(--h2-underline-width); height: var(--h2-underline-thickness); background: var(--h2-underline-color); margin-top: 8px; border-radius: 1px; }
.media-block .media-content ul { margin: 14px 0 16px 0; padding-left: 20px; }
.media-block .media-content ul li { margin-bottom: 8px; line-height: 1.7; }
.media-block + h2 { margin-top: calc(var(--content-gap) + 4px); }

/* Responsive adjustments */
@media (max-width: 1200px) {
  .media-block { grid-template-columns: 320px 1fr; gap: 20px; }
  .media-block.right { grid-template-columns: 1fr 320px; }
}

@media (max-width: 992px) {
  .media-block { grid-template-columns: 280px 1fr; gap: 18px; }
  .media-block.right { grid-template-columns: 1fr 280px; }
}

@media (max-width: 768px) {
  [itemprop="articleBody"] h2,
  #sp-component article.item h2 { margin-top: 25px; margin-bottom: 15px; font-size: var(--h2-size-sm); }
  .media-block, .media-block.right { grid-template-columns: 1fr; }
  .media-block .media-image { order: 0 !important; }
  .media-block { padding-bottom: 0; border-bottom: none; margin-bottom: var(--content-gap); gap: var(--content-gap-sm); }
  .media-block .media-content h2 { font-size: var(--h2-size-sm); }
  .media-block .media-content h2::after,
  [itemprop="articleBody"] h2::after,
  #sp-component article.item h2::after { width: calc(var(--h2-underline-width) - 10px); }
}

/* On homepage, stack media-block (image above text) for a cleaner flow */
.view-featured .media-block { 
  grid-template-columns: 1fr; 
  gap: var(--content-gap);
  padding-bottom: 0; 
  border-bottom: none; 
}
.view-featured .media-block .media-image { order: 0; }

/* Homepage highlights grid (cards replacing sidebar) */
.view-featured #sp-highlights { padding: 8px 0 28px; }

.view-featured .view-featured .home-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr 1fr; 
  gap: var(--content-gap);
}

@media (max-width: 1200px) { .view-featured .home-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px)  { .view-featured .home-grid { grid-template-columns: 1fr; } }

.view-featured .home-card { 
  background: #fff; 
  border-radius: 12px; 
  box-shadow: var(--shadow); 
  padding: 16px; 
  height: 100%;
}

.view-featured .home-card-dark { 
  background: linear-gradient(135deg, #234356, #152733); 
  color: #fff; 
}

.view-featured .home-card-dark a { color: #fff; }
.view-featured .home-card img { max-width: 100%; height: auto; display: block; }
.view-featured .home-card .btn { display: inline-block; margin-top: 8px; }

.view-featured .home-card .card-title { 
  font-size: 18px; 
  font-weight: 600; 
  margin: 0 0 10px 0; 
}

.view-featured .home-card .card-content > *:first-child { margin-top: 0; }
.view-featured .home-card .card-content > *:last-child { margin-bottom: 0; }

/* Accueil Velo header with badge */
.accueil-velo-header {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .accueil-velo-header {
    flex-direction: column;
  }
  .accueil-velo-header .velo-badge {
    align-self: center;
  }
}

/* Mobile-specific fixes for Facebook embed and other widgets */
@media (max-width: 768px) {
  .fb-page,
  .fb-page > span,
  .fb-page > span > iframe {
    max-width: 100% !important;
    width: 100% !important;
  }
  
  .view-featured .award-content img {
    max-width: 100%;
    height: auto;
  }
  
  .view-featured .award-guest img {
    max-width: 60px;
    height: auto;
  }
}

@media (max-width: 480px) {
  .view-featured .award-stars {
    font-size: 18px;
  }
  
  .view-featured .award-title {
    font-size: 14px;
  }
  
  .view-featured .btn-review {
    font-size: 13px;
    padding: 6px 16px;
  }
}
