/* ========================================
   INDEX PAGE STYLES
   ======================================== */

/* ========================================
   HERO SECTION
   ======================================== */
/* Hero styles moved to hero.css */

/* ========================================
   DOCTOR SECTION
   ======================================== */

.doctor-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
  border-radius: 20px;
  margin: clamp(2rem, 5vw, 4rem) auto;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.1);
  position: relative;
  overflow: hidden;
}

.doctor-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, #10b981 50%, var(--accent-color) 100%);
}

.doctor-title {
  font-size: var(--font-size-section-title);
  font-weight: 700;
  color: var(--text-color-primary);
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.doctor-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.doctor-description {
  font-size: var(--font-size-body);
  line-height: 1.7;
  color: var(--text-color-primary);
  text-align: justify;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.doctor-container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  width: 100%;
  max-width: 900px;
  align-items: center;
  padding: 2rem;
}

.doctor-information {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  text-align: center;
  padding: 1rem;
}

.doctor-section-title {
  text-align: center;
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--card-text);
  margin-bottom: 2rem;
  width: 100%;
}

.doctor-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  width: 100%;
  align-items: center;
}

.doctor-information .section-title {
  margin-bottom: 1.5rem;
  color: var(--card-text);
  font-size: var(--font-size-2xl);
  font-weight: 600;
  text-align: center;
  width: 100%;
}

.doctor-profile-card {
  background: var(--card-background);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  width: 100%;
  max-width: 350px;
  border: 1px solid var(--card-border);
  position: relative;
  margin: 0 auto;
}

.doctor-photo {
  width: 100%;
  height: 380px;
  border-radius: 20px 20px 0 0;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.3s ease;
}

.doctor-photo:hover {
  transform: scale(1.02);
}

.doctor-statistics {
  background: var(--accent-color);
  border-radius: 0 0 20px 20px;
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  min-height: 80px;
}

.statistic-number {
  font-size: var(--font-size-3xl);
  font-weight: bold;
  color: #ffffff;
  line-height: 1;
}

.statistic-label {
  font-size: var(--font-size-sm);
  color: #ffffff;
  margin-top: 5px;
  text-align: center;
}

/* Desktop Layout */
@media (min-width: 900px) {
  .doctor-information .section-title {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .doctor-information .doctor-description {
    text-align: justify;
  }
  
  .doctor-information .doctor-appointment-button {
    text-align: left;
  }
  
  .doctor-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    gap: calc(var(--spacing-xl) * 2);
    max-width: 1200px;
    margin: 0 auto;
    min-height: 400px;
  }
  
  .doctor-information {
    flex: 1;
    padding-right: 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 600px;
    align-items: flex-start;
    order: 1;
  }
  
  .doctor-profile-card {
    flex-shrink: 0;
    width: 350px;
    margin-left: 0;
    align-self: center;
    order: 2;
  }
}

/* Mobile Layout */
@media (max-width: 768px) {
  .doctor-appointment-button {
    width: 100%;
    max-width: 300px;
    margin: 1.5rem auto 0 auto;
  }
  
  .doctor-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    gap: 2rem;
  }
  
  .doctor-information {
    padding: 0.5rem;
    order: 1;
  }
  
  .doctor-profile-card {
    order: 2;
    margin: 0 auto;
  }
  
  .doctor-description {
    font-size: var(--font-size-base);
    text-align: center;
  }
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-section {
  border-radius: 20px !important;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12) !important;
  margin: clamp(2rem, 5vw, 4rem) auto !important;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10b981 0%, var(--accent-color) 50%, #10b981 100%);
  z-index: 3;
}

#medical-services {
  position: relative;
  background-image: url('assets/images/douleur épaule.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin: clamp(1.5rem, 4vw, 3rem) auto;
  max-width: min(1200px, 90vw);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--card-border);
  overflow: hidden;
  transition: background 0.6s ease, color 0.6s ease;
}

#medical-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

#medical-services > * {
  position: relative;
  z-index: 2;
}

#medical-services .section-description {
  color: #fff !important;
  text-align: center;
  font-size: var(--font-size-lg);
  line-height: 1.7;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Service hero styles moved to hero.css */

#medical-services .operations-list h3 {
  color: #fff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
}

#medical-services .operation-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

#medical-services .operation-header {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-color-hover));
}

#medical-services .operation-content {
  background: rgba(255, 255, 255, 0.98);
}

/* Services Grid */
.services-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 20px);
  margin-bottom: 40px;
}

/* Home Card Grid */
.home-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
  justify-items: stretch;
  padding: 0.5rem 0;
  max-width: 1400px;
  margin: 0 auto;
}

.home-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 80px;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  color: var(--text-color-primary);
  text-decoration: none;
  background-size: initial;
  background-position: initial;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0;
}

.home-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.home-card:hover::before {
  opacity: 1;
}

.home-card::after { 
  display: none; 
}

.home-card-title {
  position: relative;
  z-index: 2;
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.1px;
  color: var(--text-color-primary);
  line-height: 1.3;
  text-shadow: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.home-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(148, 163, 184, 0.4);
  background: rgba(255, 255, 255, 0.98);
}

.home-card:hover .home-card-title {
  color: var(--accent-color);
  font-weight: 700;
}

/* Service Cards */
.service-card {
  background: #ffffff;
  color: #222222;
  border-radius: clamp(8px, 1vw, 12px);
  padding: clamp(1.5rem, 3vw, 30px);
  width: clamp(160px, 20vw, 200px);
  height: clamp(160px, 20vw, 200px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.service-icon {
  width: 100%;
  height: 35vh;
  margin-bottom: 0;
  color: var(--accent-color);
  object-fit: cover;
  border-radius: 12px;
}

.service-name {
  font-size: var(--font-size-small);
  margin: 0;
  font-weight: 500;
  text-align: left;
}

.service-card--highlight {
  background: var(--accent-color);
  color: #ffffff;
  width: clamp(200px, 25vw, 320px);
  height: auto;
  min-height: clamp(80px, 10vw, 100px);
  padding: clamp(1rem, 2vw, 20px);
}

.service-card--highlight .service-name {
  font-size: var(--font-size-body);
  font-weight: 600;
  text-align: left;
}

/* ========================================
   TABS STYLES
   ======================================== */

.services-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin: 1rem 0 1.5rem 0;
  padding: 0 1rem;
  border-bottom: 2px solid var(--card-border);
  padding-bottom: 1rem;
  position: relative;
}

.services-tabs::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.tab-button {
  background: transparent;
  border: 1px solid var(--card-border);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  font-size: var(--font-size-md);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
  position: relative;
  min-width: 140px;
  text-align: center;
  white-space: nowrap;
}

.tab-button:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.15);
}

.tab-button.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: white !important;
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.3);
  transform: translateY(-1px);
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
  margin-top: 1rem;
  padding: 0 1rem;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Different card styles for pathologies vs interventions */
.pathology-card {
  border-left: 4px solid #10b981;
  background: rgba(255, 255, 255, 0.95);
  position: relative;
}

.pathology-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.intervention-card {
  border-left: 4px solid #3b82f6;
  background: rgba(255, 255, 255, 0.95);
  position: relative;
}

.intervention-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.pathology-card:hover {
  border-left-color: #059669;
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.15);
  background: rgba(255, 255, 255, 0.98);
}

.pathology-card:hover::before {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
}

.intervention-card:hover {
  border-left-color: #2563eb;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
  background: rgba(255, 255, 255, 0.98);
}

.intervention-card:hover::before {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
}

/* Contact Tabs - Shown by default, hidden on desktop */
.contact-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem 0;
  border-bottom: 2px solid var(--card-border);
  padding: 0 2rem 1rem 2rem;
}

.contact-tab-button {
  background: transparent;
  border: 2px solid var(--card-border);
  color: var(--text-color-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: var(--font-size-md);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.contact-tab-button:hover {
  background: var(--card-background);
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.contact-tab-button.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.contact-tab-content {
  display: block; /* Show both sections on desktop */
}

.contact-tab-content.active {
  display: block;
}

/* Tab content spacing */
#pathologies-tab,
#interventions-tab {
  padding: 1rem 0;
}

/* ========================================
   CONTACT SECTION STYLES
   ======================================== */

.contact-section {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-radius: 20px;
  margin: clamp(2rem, 5vw, 4rem) auto;
  padding: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10b981 0%, var(--accent-color) 50%, #10b981 100%);
}

.contact-title {
  font-size: var(--font-size-section-title);
  font-weight: 700;
  color: var(--text-color-primary);
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  padding: 2rem 2rem 1rem 2rem;
}

.contact-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.contact-description {
  font-size: var(--font-size-lg);
  color: var(--text-color-primary);
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.6;
  padding: 0 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: var(--spacing-lg) auto 2rem auto;
  justify-items: center;
  justify-content: center;
  padding: 0 2rem 2rem 2rem;
  max-width: 1000px;
}

.contact-information {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-subtitle {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--text-color-primary);
  margin-bottom: 2rem;
  text-align: center;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.5rem, 1.5vw, 0.75rem);
  margin-bottom: var(--spacing-md);
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  border: 1px solid var(--card-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  min-height: 130px;
  justify-content: center;
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

.contact-icon {
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}

.contact-phone-info,
.contact-email-info,
.contact-address-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}

.contact-phone-location,
.contact-email-location,
.contact-address-location {
  font-size: var(--font-size-xs);
  color: var(--text-color-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.contact-phone-link,
.contact-email-link,
.contact-address-text {
  font-size: var(--font-size-base);
  color: var(--text-color-primary);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-phone-link:hover,
.contact-email-link:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.contact-address-text {
  line-height: 1.4;
  max-width: 200px;
}

/* Responsive Design */
@media (min-width: 769px) {
  .services-tabs {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
  
  .tab-button {
    min-width: 200px;
  }
  
  .contact-tabs {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
  
  .contact-tab-button {
    min-width: 220px;
  }
}

/* Large screens - better contact grid layout */
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 2.5rem auto;
  }
  
  .contact-item {
    min-width: auto;
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 140px;
  }
  
  /* Desktop: Hide tabs and show both contact sections side by side */
  .contact-tabs {
    display: none; /* Hide tabs on desktop */
  }
  
  /* Container for both contact sections - proper 6/6 grid */
  .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1400px;
    margin: 2rem auto 0 auto;
  }
  
  .contact-tab-content {
    display: block !important;
    margin-bottom: 0;
    width: 100%;
  }
  
  /* Adjust contact grid for side-by-side layout */
  .contact-tab-content .contact-grid {
    max-width: none;
    margin: 0;
    padding: 0;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
  }
  
  /* Ensure proper spacing between contact items */
  .contact-tab-content .contact-item {
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: none;
  }
  
  /* Make contact information take full width */
  .contact-tab-content .contact-information {
    width: 100%;
  }
  
  /* Add distinct styling to each contact section */
  .contact-tab-content:first-child {
    border-right: 1px solid var(--card-border);
    padding-right: 1.5rem;
  }
  
  .contact-tab-content:last-child {
    padding-left: 1.5rem;
  }
  
  /* Ensure contact sections don't overlap */
  .contact-tab-content {
    position: relative;
    z-index: 1;
  }
  
  /* Override any max-width constraints for desktop grid */
  .contact-tab-content .contact-item {
    max-width: none !important;
  }
}

/* Extra large screens - even better spacing */
@media (min-width: 1200px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1600px;
    margin: 3rem auto;
  }
  
  .contact-item {
    padding: 2.5rem;
    min-height: 160px;
    max-width: 450px;
  }
}

@media (max-width: 768px) {
  #medical-services {
    background-attachment: scroll;
  }
  
  #medical-services .section-description {
    font-size: var(--font-size-base);
  }
  
  .services-grid {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .service-card {
    width: 100%;
    max-width: 280px;
    height: auto;
    min-height: 120px;
    padding: 1.5rem;
  }
  
  .home-card-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0.25rem 0;
  }

  .home-card {
    height: 70px;
    padding: 0.75rem 1rem;
    margin: 0;
  }

  .home-card-title {
    font-size: var(--font-size-xs);
  }
  
  .services-tabs {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin: 1.5rem 0 2rem 0;
  }
  
  .tab-button {
    width: 100%;
    max-width: 250px;
    padding: 0.8rem 1.5rem;
    font-size: var(--font-size-md);
  }

  .tab-content {
    padding: 0 0.5rem;
  }

  #pathologies-tab,
  #interventions-tab {
    padding: 0.75rem 0;
  }
  
  .contact-tabs {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .contact-tab-button {
    width: 100%;
    max-width: 250px;
  }
  
  /* Mobile contact improvements */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .contact-item {
    padding: 1rem;
    min-height: 90px;
    margin-bottom: 0.75rem;
    min-width: 280px;
  }
  
  .contact-subtitle {
    font-size: var(--font-size-lg);
    margin-bottom: 1.5rem;
  }
  
  .contact-phone-link,
  .contact-email-link {
    font-size: var(--font-size-sm);
    white-space: nowrap;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  
  .contact-address-text {
    font-size: var(--font-size-sm);
    line-height: 1.3;
    max-width: 100%;
  }
  
  .contact-icon {
    width: 18px;
    height: 18px;
  }
  
  /* Reduce overall contact section padding on mobile */
  .contact-section {
    padding: 1.5rem 1rem;
    margin: 1.5rem auto;
  }
  
  .contact-tabs {
    margin: 1rem 0;
    display: flex; /* Show tabs on mobile */
  }
  
  .contact-tab-content {
    display: none; /* Hide inactive content on mobile */
  }
  
  .contact-tab-content.active {
    display: block; /* Show active content on mobile */
  }
}

/* Extra small screens - ensure email stays on one line */
@media (max-width: 360px) {
  .contact-item {
    min-width: 260px;
    padding: 0.75rem;
  }
  
  .contact-email-link {
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: visible;
    text-overflow: unset;
  }
}
