/* =========================================
   Yacine TV - Main Stylesheet
   RTL Arabic Layout | Light Theme
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@300;400;500;600;700;800&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary: #ab0001;
  --primary-dark: #8a0001;
  --primary-light: #d4000a;
  --secondary: #2B6CB0;
  --secondary-dark: #215387;
  --bg-body: #F7FAFC;
  --bg-white: #ffffff;
  --bg-light: #EDF2F7;
  --bg-card: #ffffff;
  --text-dark: #1A202C;
  --text-body: #2D3748;
  --text-secondary: #4A5568;
  --text-muted: #718096;
  --border-color: #E2E8F0;
  --border-light: #edf2f7;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s ease;
  --max-width: 1290px;
  --font-family: 'Noto Kufi Arabic', sans-serif;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  color: var(--text-body);
  background-color: var(--bg-body);
  line-height: 1.8;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

h1 { font-size: clamp(1.75rem, 4vw, 2rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 1.75rem); }
h3 { font-size: clamp(1.15rem, 3vw, 1.5rem); }
h4 { font-size: clamp(1rem, 2.5vw, 1.25rem); }

p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* ---- Skip Link ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 9999;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 10px;
  left: 10px;
}

/* =========================================
   HEADER / NAVBAR
   ========================================= */
.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.site-branding a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-branding img {
  height: 50px;
  width: auto;
}

/* Primary Navigation */
.primary-nav {
  display: flex;
  align-items: center;
}

.primary-nav .menu {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.primary-nav .menu li a {
  display: block;
  padding: 0.6rem 1rem;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.primary-nav .menu li a:hover,
.primary-nav .menu li a.active {
  color: var(--primary);
  background: rgba(171, 0, 1, 0.06);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-dark);
  font-size: 1.5rem;
  line-height: 1;
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.mobile-drawer.active {
  display: block;
}

.mobile-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}

.mobile-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: var(--bg-white);
  box-shadow: var(--shadow-xl);
  padding: 1.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  animation: slideIn 0.3s forwards;
}

@keyframes slideIn {
  to { transform: translateX(0); }
}

.mobile-drawer .close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--bg-light);
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.mobile-drawer .mobile-menu li {
  border-bottom: 1px solid var(--border-light);
}

.mobile-drawer .mobile-menu li a {
  display: block;
  padding: 0.85rem 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
  transition: color var(--transition);
}

.mobile-drawer .mobile-menu li a:hover {
  color: var(--primary);
}

/* =========================================
   HERO / INTRO SECTION
   ========================================= */
.intro-text {
  background: var(--bg-white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 2;
  color: var(--text-body);
  box-shadow: var(--shadow-sm);
}

/* ---- App Info Section ---- */
.app-info-section {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.app-info-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  align-items: start;
}

.app-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.app-image-wrapper img {
  max-width: 280px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}

.app-image-wrapper img:hover {
  transform: scale(1.03);
}

.app-details-wrapper {
  width: 100%;
}

.app-details-header {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.app-details-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.app-details-table tr:nth-child(odd) {
  background: #f0f0f0;
}

.app-details-table td {
  padding: 0.8rem 1.2rem;
  border: none;
  font-size: 0.95rem;
}

.app-details-table td:first-child {
  font-weight: 700;
  color: var(--text-dark);
  width: 40%;
}

/* ---- Download Button ---- */
.download-btn-wrap {
  text-align: center;
  margin: 1.5rem 0;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 700;
  font-family: var(--font-family);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(171, 0, 1, 0.35);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.download-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.download-btn:hover::before {
  left: 100%;
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(171, 0, 1, 0.45);
  color: #fff;
}

.download-btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.download-btn .pulse-dot {
  width: 10px;
  height: 10px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* =========================================
   CONTENT SECTIONS
   ========================================= */
.content-area {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1rem 2rem;
}

.content-wrap {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.content-section {
  margin-bottom: 2.5rem;
}

.content-section h2 {
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
}

.content-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.content-section h2.text-center::after {
  right: 50%;
  transform: translateX(50%);
}

.text-center {
  text-align: center;
}

.content-section p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 2;
}

.content-section ul {
  padding-right: 1.5rem;
  margin-bottom: 1rem;
}

.content-section ul li {
  position: relative;
  padding: 0.35rem 1.5rem 0.35rem 0;
  line-height: 1.8;
  color: var(--text-body);
}

.content-section ul li::before {
  content: '✦';
  position: absolute;
  right: 0;
  color: var(--primary);
  font-size: 0.7rem;
  top: 0.6rem;
}

.content-image {
  margin: 1.5rem 0;
  text-align: center;
}

.content-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin: 0 auto;
  max-width: 100%;
}

/* ---- Steps Section ---- */
.steps-container {
  margin: 1.5rem 0;
}

.step-item {
  margin-bottom: 1.5rem;
}

.step-item h3 {
  color: var(--text-dark);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* =========================================
   FEATURE CARDS
   ========================================= */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(171, 0, 1, 0.2);
}

.feature-card .feature-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  background: rgba(171, 0, 1, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0;
}

/* =========================================
   SPORTS / ICON LIST
   ========================================= */
.icon-list {
  margin: 1.5rem 0;
}

.icon-list-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}

.icon-list-item:last-child {
  border-bottom: none;
}

.icon-list-item .list-icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.icon-list-item .list-icon svg {
  width: 20px;
  height: 20px;
}

.icon-list-item p {
  margin-bottom: 0;
  line-height: 1.8;
  font-size: 0.95rem;
}

/* =========================================
   CHANNEL CATEGORIES
   ========================================= */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.channel-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition);
}

.channel-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--primary);
}

.channel-card .channel-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.channel-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.channel-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.7;
}

/* =========================================
   PROS & CONS
   ========================================= */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.pros-col, .cons-col {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.pros-col h3, .cons-col h3 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.pros-col .pro-item,
.cons-col .con-item {
  margin-bottom: 1.25rem;
}

.pros-col .pro-item h4,
.cons-col .con-item h4 {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.pros-col .check-item,
.cons-col .check-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.5rem 0;
}

.check-item .check-icon {
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.check-icon.green svg { color: #22c55e; }
.check-icon.red svg { color: var(--primary); }

.check-item p {
  margin-bottom: 0;
  font-size: 0.93rem;
  line-height: 1.8;
}

/* =========================================
   FAQ ACCORDION
   ========================================= */
.faq-section {
  margin: 2rem 0;
}

.faq-item {
  margin-bottom: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 600;
  text-align: right;
  line-height: 1.6;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--primary-dark);
}

.faq-question .faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s;
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.faq-item.active .faq-question .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--bg-white);
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 1.25rem;
}

.faq-answer p {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 0;
}

/* =========================================
   BREADCRUMBS
   ========================================= */
.breadcrumbs {
  padding: 0.75rem 0;
  margin-bottom: 0.5rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumbs li a {
  color: var(--secondary);
}

.breadcrumbs li a:hover {
  color: var(--primary);
}

.breadcrumbs .separator {
  color: var(--text-muted);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--text-dark);
  color: #cbd5e0;
  padding: 3rem 0 0;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #a0aec0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links li a {
  color: #a0aec0;
  font-size: 0.9rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links li a:hover {
  color: #fff;
  padding-right: 5px;
}

.footer-links li a::before {
  content: '‹';
  font-size: 0.8rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #718096;
  margin: 0;
}

.footer-bottom a {
  color: var(--primary);
}

/* =========================================
   PAGE HEADER (Subpages)
   ========================================= */
.page-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 2.5rem 0;
  margin-bottom: 2rem;
  text-align: center;
}

.page-header h1 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.page-header .breadcrumbs li,
.page-header .breadcrumbs .separator {
  color: rgba(255,255,255,0.7);
}

.page-header .breadcrumbs li a {
  color: rgba(255,255,255,0.9);
}

/* =========================================
   CONTACT FORM
   ========================================= */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 0.95rem;
  color: var(--text-body);
  background: var(--bg-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  direction: rtl;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(171, 0, 1, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* =========================================
   LEGAL PAGES
   ========================================= */
.legal-content h2 {
  margin-top: 2rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content ul {
  padding-right: 1.5rem;
}

.legal-content ul li {
  position: relative;
  padding-right: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-content ul li::before {
  content: '•';
  position: absolute;
  right: 0;
  color: var(--primary);
  font-weight: bold;
}

/* =========================================
   ANIMATIONS
   ========================================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   BACK TO TOP
   ========================================= */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .primary-nav {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .app-info-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .app-image-wrapper img {
    max-width: 220px;
    margin: 0 auto;
  }

  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h4::after {
    right: 50%;
    transform: translateX(50%);
  }

  .content-wrap {
    padding: 1.25rem;
  }

  .intro-text {
    padding: 1rem 1.25rem;
  }

  .channels-grid {
    grid-template-columns: 1fr;
  }

  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.3rem; }
}

@media (max-width: 480px) {
  .download-btn {
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
  }

  .app-details-table td {
    padding: 0.6rem 0.8rem;
    font-size: 0.88rem;
  }

  .feature-card {
    padding: 1.25rem;
  }
}

/* =========================================
   UTILITY CLASSES
   ========================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
