/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 29 2026 | 08:34:40 */
/* =============================================
   ProTunisie — CTA satellites (pt-cta.css)
   À placer dans : /wp-content/themes/VOTRE-THEME/css/pt-cta.css
   Appel WP recommandé : wp_enqueue_style() dans functions.php
   ============================================= */
.pt-cta-bloc {
  padding: 1.5rem 0;
  font-family: inherit;
}
.pt-cta-titre {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #0251B8;
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pt-cta-titre::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #0251B8;
  border-radius: 2px;
}
.pt-cta-grille {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.pt-cta-card {
  background: #fff;
  border: 1.5px solid #dce9f9;
  border-radius: 12px;
  padding: 1.25rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.pt-cta-card:hover {
  border-color: #0251B8;
  box-shadow: 0 4px 18px rgba(2, 81, 184, .10);
}
.pt-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #e8f0fd;
  color: #0251B8;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  width: fit-content;
}
.pt-cta-watt {
  font-size: 22px;
  font-weight: 700;
  color: #0251B8;
  line-height: 1.1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.pt-cta-label {
  font-size: 12px;
  color: #666;
  font-weight: 400;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.pt-cta-prix {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: .25rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.pt-cta-prix span {
  font-size: 12px;
  font-weight: 400;
  color: #888;
  margin-left: 4px;
}
.pt-cta-lien {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: .5rem;
  color: #0251B8;
  font-size: 13px;
  font-weight: 500;
  border-top: 1px solid #eaf0fb;
  padding-top: .75rem;
}
.pt-cta-lien svg {
  transition: transform .2s;
  flex-shrink: 0;
}
.pt-cta-card:hover .pt-cta-lien svg {
  transform: translateX(3px);
}
/* --- Responsive --- */
@media (max-width: 768px) {
  .pt-cta-grille {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .pt-cta-grille {
    grid-template-columns: 1fr;
  }
  .pt-cta-watt {
    font-size: 19px;
  }
}