/**
 * LAUTECH CHAPEL - Reusable Components
 * Modular UI components for consistent design
 */

/* ============================================
   PROGRAM SCHEDULE CARDS
   ============================================ */
.chapel-schedule-card {
  background: var(--chapel-white);
  border-radius: var(--radius-xl);
  padding: 0;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--chapel-gold);
  transition: all var(--transition-base);
  margin-bottom: var(--space-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.chapel-schedule-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-left-color: var(--chapel-burgundy);
}

.chapel-schedule-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.chapel-schedule-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.chapel-schedule-card:hover .chapel-schedule-image img {
  transform: scale(1.05);
}

.chapel-schedule-day {
  font-weight: 700;
  color: var(--chapel-burgundy);
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0 var(--space-lg);
  padding-top: var(--space-lg);
}

.chapel-schedule-time {
  color: var(--chapel-gray-600);
  font-size: 0.9375rem;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0 var(--space-lg);
}

.chapel-schedule-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--chapel-gray-800);
  margin-bottom: var(--space-sm);
  padding: 0 var(--space-lg);
}

.chapel-schedule-description {
  color: var(--chapel-gray-600);
  font-size: 0.9375rem;
  line-height: 1.6;
  padding: 0 var(--space-lg);
  flex-grow: 1;
  margin-bottom: var(--space-md);
}

.chapel-schedule-card .text-center {
  padding: 0 var(--space-lg) var(--space-lg);
}

/* ============================================
   MINISTRY UNIT CARDS
   ============================================ */
.chapel-unit-card {
  background: var(--chapel-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.chapel-unit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.chapel-unit-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--chapel-burgundy), var(--chapel-purple));
}

.chapel-unit-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.chapel-unit-card:hover .chapel-unit-image {
  transform: scale(1.1);
}

.chapel-unit-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(139, 21, 56, 0.7));
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
}

.chapel-unit-name {
  color: var(--chapel-white);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.chapel-unit-body {
  padding: var(--space-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.chapel-unit-description {
  color: var(--chapel-gray-600);
  margin-bottom: var(--space-lg);
  flex: 1;
}

.chapel-unit-link {
  color: var(--chapel-burgundy);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  transition: all var(--transition-base);
}

.chapel-unit-link:hover {
  color: var(--chapel-gold);
  gap: var(--space-md);
}

/* ============================================
   ELDER/MINISTER PROFILE CARDS
   ============================================ */
.chapel-profile-card {
  background: var(--chapel-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.chapel-profile-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
}

.chapel-profile-card .profile-image {
  position: relative;
  overflow: hidden;
  background: white;
  height: 300px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chapel-profile-card .profile-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform var(--transition-slow);
}

.chapel-profile-card:hover .profile-image img {
  transform: scale(1.05);
}

.chapel-profile-card .profile-content {
  padding: var(--space-xl);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.chapel-profile-card .profile-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--chapel-burgundy);
  margin-bottom: var(--space-sm);
}

.chapel-profile-card .profile-role {
  color: var(--chapel-gold-dark);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.chapel-profile-bio {
  color: var(--chapel-gray-600);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ============================================
   SERMON/MESSAGE CARDS
   ============================================ */
.chapel-sermon-card {
  background: var(--chapel-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.chapel-sermon-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
}

.chapel-sermon-thumbnail {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, var(--chapel-burgundy), var(--chapel-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.chapel-sermon-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chapel-sermon-play-button {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: rgba(212, 165, 66, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--chapel-gray-900);
  font-size: 1.5rem;
  transition: all var(--transition-base);
  cursor: pointer;
  z-index: 2;
}

.chapel-sermon-play-button:hover {
  transform: scale(1.1);
  background: var(--chapel-gold);
}

.chapel-sermon-body {
  padding: var(--space-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.chapel-sermon-meta {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  font-size: 0.875rem;
  color: var(--chapel-gray-500);
}

.chapel-sermon-date,
.chapel-sermon-speaker {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.chapel-sermon-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--chapel-gray-900);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.chapel-sermon-scripture {
  font-family: var(--font-scripture);
  font-style: italic;
  color: var(--chapel-burgundy);
  margin-bottom: var(--space-md);
}

.chapel-sermon-description {
  color: var(--chapel-gray-600);
  font-size: 0.9375rem;
  line-height: 1.6;
  flex: 1;
}

.chapel-sermon-actions {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* ============================================
   TESTIMONIAL/QUOTE CARDS
   ============================================ */
.chapel-testimonial {
  background: linear-gradient(135deg, var(--chapel-cream-light), var(--chapel-beige));
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  position: relative;
  box-shadow: var(--shadow-md);
}

.chapel-testimonial::before {
  content: '"';
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  font-size: 6rem;
  font-family: var(--font-heading);
  color: var(--chapel-gold);
  opacity: 0.3;
  line-height: 1;
}

.chapel-testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--chapel-gray-700);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.chapel-testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.chapel-testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 3px solid var(--chapel-white);
}

.chapel-testimonial-info h6 {
  font-weight: 700;
  color: var(--chapel-burgundy);
  margin-bottom: 0.25rem;
}

.chapel-testimonial-role {
  font-size: 0.875rem;
  color: var(--chapel-gray-600);
}

/* ============================================
   STATISTICS/COUNTER CARDS
   ============================================ */
.chapel-stat-card {
  text-align: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--chapel-white), var(--chapel-cream-light));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.chapel-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.chapel-stat-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  font-size: 2rem;
}

.chapel-stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--chapel-burgundy);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.chapel-stat-label {
  font-size: 1rem;
  color: var(--chapel-gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ============================================
   CALL TO ACTION BOXES
   ============================================ */
.chapel-cta-box {
  background: linear-gradient(135deg, var(--chapel-burgundy), var(--chapel-burgundy-light));
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
  color: var(--chapel-white);
  position: relative;
  overflow: hidden;
}

.chapel-cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 165, 66, 0.2) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.chapel-cta-content {
  position: relative;
  z-index: 1;
}

.chapel-cta-title {
  font-size: 2rem;
  color: var(--chapel-white);
  margin-bottom: var(--space-md);
}

.chapel-cta-text {
  font-size: 1.125rem;
  color: var(--chapel-cream);
  margin-bottom: var(--space-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.chapel-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  padding: var(--space-lg) 0;
  font-size: 0.875rem;
}

.chapel-breadcrumb-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.chapel-breadcrumb-item a {
  color: var(--chapel-gold);
  text-decoration: none;
  transition: color var(--transition-base);
  font-weight: 600;
}

.chapel-breadcrumb-item a:hover {
  color: var(--chapel-gold-light);
  text-decoration: underline;
}

.chapel-breadcrumb-separator {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

/* ============================================
   IMAGE GALLERY GRID
   ============================================ */
.chapel-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-md);
}

.chapel-gallery-item,
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.chapel-gallery-item:hover,
.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
}

.chapel-gallery-item img,
.gallery-item img,
.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  display: block;
}

.chapel-gallery-item:hover img,
.gallery-item:hover img,
.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.chapel-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(139, 21, 56, 0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.chapel-gallery-item:hover .chapel-gallery-overlay {
  opacity: 1;
}

.chapel-gallery-caption {
  color: var(--chapel-white);
  font-weight: 600;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.chapel-form-group {
  margin-bottom: var(--space-lg);
}

.chapel-form-label {
  display: block;
  font-weight: 600;
  color: var(--chapel-burgundy);
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
}

.chapel-form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--chapel-gray-300);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: var(--font-primary);
  transition: all var(--transition-base);
  background: var(--chapel-white);
  color: var(--chapel-gray-800);
}

.chapel-form-control:focus {
  outline: none;
  border-color: var(--chapel-burgundy);
  box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.1);
}

.chapel-form-control::placeholder {
  color: var(--chapel-gray-400);
}

textarea.chapel-form-control {
  min-height: 150px;
  resize: vertical;
}

/* ============================================
   ALERTS & NOTIFICATIONS
   ============================================ */
.chapel-alert {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.chapel-alert-success {
  background: #ECFDF5;
  border-left: 4px solid var(--chapel-success);
  color: #065F46;
}

.chapel-alert-warning {
  background: #FFFBEB;
  border-left: 4px solid var(--chapel-warning);
  color: #92400E;
}

.chapel-alert-error {
  background: #FEF2F2;
  border-left: 4px solid var(--chapel-error);
  color: #991B1B;
}

.chapel-alert-info {
  background: #EFF6FF;
  border-left: 4px solid var(--chapel-info);
  color: #1E3A8A;
}

/* ============================================
   LOADING SPINNER
   ============================================ */
.chapel-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--chapel-cream);
  border-top-color: var(--chapel-burgundy);
  border-radius: var(--radius-full);
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   BADGE COMPONENTS
   ============================================ */
.chapel-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.chapel-badge-burgundy {
  background: var(--chapel-burgundy);
  color: var(--chapel-white);
}

.chapel-badge-gold {
  background: var(--chapel-gold);
  color: var(--chapel-gray-900);
}

.chapel-badge-outline {
  background: transparent;
  border: 2px solid var(--chapel-burgundy);
  color: var(--chapel-burgundy);
}

/* ============================================
   DIVIDER
   ============================================ */
.chapel-divider {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--chapel-gold), transparent);
  margin: var(--space-2xl) 0;
}

/* ============================================
   RESPONSIVE IMAGES
   ============================================ */
.chapel-img-responsive {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.chapel-img-rounded {
  border-radius: var(--radius-full);
}

/* ============================================
   CARD-DOCTOR (MINISTERS CARDS)
   ============================================ */
.card-doctor {
  display: block;
  margin: 15px auto;
  width: 100%;
  max-width: 200px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(154, 159, 151, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.card-doctor:hover {
  box-shadow: 0 4px 12px rgba(139, 21, 56, 0.2);
  transform: translateY(-5px);
}

.card-doctor .header {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f5f5f5;
}

.card-doctor .header img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: white;
}

.card-doctor .body {
  padding: 15px 20px;
}

/* Chapel Profile Image Container - Fixed Version */
.chapel-profile-image-container {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--chapel-cream), var(--chapel-beige));
  display: flex;
  align-items: center;
  justify-content: center;
}

.chapel-profile-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform var(--transition-slow);
  background: white;
}

.chapel-profile-card:hover .chapel-profile-image {
  transform: scale(1.05);
}

.chapel-profile-body {
  padding: var(--space-xl);
  text-align: center;
}

.chapel-profile-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--chapel-burgundy);
  margin-bottom: var(--space-xs);
}

.chapel-profile-role {
  color: var(--chapel-gold-dark);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Chapel Unit Cards */
.chapel-unit-card {
  background: var(--chapel-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
}

.chapel-unit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--chapel-gold);
}

.chapel-unit-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 2rem;
  color: var(--chapel-white);
  transition: all var(--transition-base);
}

.chapel-unit-icon.burgundy {
  background: linear-gradient(135deg, var(--chapel-burgundy), #6B1030);
}

.chapel-unit-icon.gold {
  background: linear-gradient(135deg, var(--chapel-gold), #B8922E);
}

.chapel-unit-icon.purple {
  background: linear-gradient(135deg, var(--chapel-purple), #543D7F);
}

.chapel-unit-card:hover .chapel-unit-icon {
  transform: scale(1.1) rotate(5deg);
}

.chapel-unit-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--chapel-gray-800);
  margin: 0;
  transition: color var(--transition-base);
}

.chapel-unit-card:hover .chapel-unit-title {
  color: var(--chapel-burgundy);
}

/* Fun Unit Cards - Enhanced Version */
.chapel-fun-unit-card {
  background: var(--chapel-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.chapel-fun-unit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--chapel-burgundy), var(--chapel-gold), var(--chapel-purple));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.chapel-fun-unit-card:hover::before {
  transform: scaleX(1);
}

.chapel-fun-unit-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(139, 21, 56, 0.2);
}

.chapel-fun-unit-card[data-color="burgundy"]:hover {
  border-color: var(--chapel-burgundy);
}

.chapel-fun-unit-card[data-color="gold"]:hover {
  border-color: var(--chapel-gold);
}

.chapel-fun-unit-card[data-color="purple"]:hover {
  border-color: var(--chapel-purple);
}

.chapel-fun-unit-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

.chapel-fun-unit-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--chapel-white);
  transition: all 0.4s ease;
  position: relative;
}

.chapel-fun-unit-card[data-color="burgundy"] .chapel-fun-unit-icon {
  background: linear-gradient(135deg, var(--chapel-burgundy), #A01845);
  box-shadow: 0 8px 20px rgba(139, 21, 56, 0.3);
}

.chapel-fun-unit-card[data-color="gold"] .chapel-fun-unit-icon {
  background: linear-gradient(135deg, var(--chapel-gold), #E5B84D);
  box-shadow: 0 8px 20px rgba(212, 165, 66, 0.3);
}

.chapel-fun-unit-card[data-color="purple"] .chapel-fun-unit-icon {
  background: linear-gradient(135deg, var(--chapel-purple), #7D5BAB);
  box-shadow: 0 8px 20px rgba(107, 76, 154, 0.3);
}

.chapel-fun-unit-card:hover .chapel-fun-unit-icon {
  transform: rotate(10deg) scale(1.1);
}

.chapel-fun-unit-badge {
  background: var(--chapel-cream);
  color: var(--chapel-gray-700);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.chapel-fun-unit-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--chapel-gray-800);
  margin-bottom: var(--space-md);
  transition: color 0.3s ease;
}

.chapel-fun-unit-card:hover .chapel-fun-unit-title {
  color: var(--chapel-burgundy);
}

.chapel-fun-unit-desc {
  color: var(--chapel-gray-600);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.chapel-fun-unit-arrow {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--chapel-gray-400);
  transition: all 0.3s ease;
  align-self: flex-end;
}

.chapel-fun-unit-card:hover .chapel-fun-unit-arrow {
  color: var(--chapel-burgundy);
  transform: translateX(8px);
}
