/*
Theme Name: İlahiyat Sempozyum
Theme URI: https://example.com/ilahiyat-sempozyum
Author: İlahiyat Sempozyum Ekibi
Author URI: https://example.com
Description: İlahiyat Öğrenci Sempozyumu için özel olarak tasarlanmış WordPress teması.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ilahiyat-sempozyum
*/

/* CSS Variables */
:root {
  --primary: #1a5f4a;
  --primary-dark: #124a39;
  --secondary: #c9a227;
  --text: #333333;
  --text-light: #666666;
  --bg: #ffffff;
  --bg-light: #f8f9fa;
  --border: #e0e0e0;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --radius: 6px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  background: var(--primary);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  position: relative;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.logo-text span {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.9;
}

/* Desktop Nav Menu */
.nav-menu-wrapper {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.nav-menu li {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  height: 36px;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
  background: rgba(255,255,255,0.15);
}

/* Dropdown Menu */
.menu-item-has-children {
  position: relative;
}

.menu-item-has-children > a::after {
  content: '▼';
  font-size: 10px;
  margin-left: 6px;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 180px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  list-style: none;
  padding: 8px 0;
  margin-top: 8px;
  z-index: 1001;
}

.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li {
  display: block;
  width: 100%;
}

.sub-menu a {
  color: var(--text);
  display: block;
  padding: 10px 16px;
  height: auto;
  white-space: nowrap;
}

.sub-menu a:hover {
  background: var(--bg-light);
  color: var(--primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.mobile-menu-btn:hover {
  background: rgba(255,255,255,0.25);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
    background: rgba(255,255,255,0.15);
  }
  
  .mobile-menu-btn:hover {
    background: rgba(255,255,255,0.25);
  }
  
  /* Mobile Menu Wrapper - KAPALI BAŞLANGIÇ */
  .nav-menu-wrapper {
    display: none !important;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 999;
  }
  
  /* Mobile Menu Wrapper - AÇIK DURUM */
  .nav-menu-wrapper.active {
    display: block !important;
  }
  
  /* Mobile Menu List */
  .nav-menu,
  #primary-menu {
    display: block !important;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  .nav-menu li,
  #primary-menu li {
    width: 100%;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .nav-menu li:last-child,
  #primary-menu li:last-child {
    border-bottom: none;
  }
  
  .nav-menu a,
  #primary-menu a {
    height: auto;
    padding: 14px 20px;
    display: block;
    width: 100%;
    color: white;
    text-decoration: none;
    font-size: 15px;
  }
  
  .menu-item-has-children > a::after {
    float: right;
    margin-top: 4px;
    transition: transform 0.3s;
    content: '▼';
    font-size: 10px;
  }
  
  .menu-item-has-children.active > a::after {
    transform: rotate(180deg);
  }
  
  .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0,0,0,0.2);
    display: none;
    padding: 0;
    margin: 0;
    border-radius: 0;
    list-style: none;
  }
  
  .menu-item-has-children.active .sub-menu {
    display: block;
  }
  
  .sub-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  
  .sub-menu li:last-child {
    border-bottom: none;
  }
  
  .sub-menu a {
    color: white;
    padding: 12px 20px 12px 40px;
    font-size: 14px;
    display: block;
  }
  
  .sub-menu a:hover {
    background: rgba(255,255,255,0.1);
    color: white;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero h1.two-lines {
  font-size: 36px;
}

.hero h1 .line-2 {
  display: block;
  font-size: 28px;
  font-weight: 400;
  margin-top: 8px;
  opacity: 0.9;
}

.hero p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: var(--secondary);
  color: white;
}

.btn-primary:hover {
  background: #b89420;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

/* Hero Buttons - Always white text */
.hero .btn,
.hero .btn-primary,
.hero .btn-outline {
  color: white !important;
}

/* CTA Box Buttons */
.cta-box .btn,
.cta-box .btn-primary {
  color: white !important;
}

/* Sections */
.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--bg-light);
}

/* Page Header */
.page-header {
  background: var(--primary);
  color: white;
  padding: 48px 20px;
  text-align: center;
}

.page-header h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
}

.page-header p {
  opacity: 0.85;
}

/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* Cards */
.card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.card-icon {
  width: 64px;
  height: 64px;
  background: rgba(26,95,74,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--primary);
}

.card-icon i {
  font-size: 28px;
}

.card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.card p {
  color: var(--text-light);
  font-size: 14px;
}

/* Announcement Cards */
.announcement-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: left;
}

.announcement-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.announcement-card-link:hover .announcement-card {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.announcement-date {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.announcement-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.announcement-card p {
  font-size: 14px;
  color: var(--text-light);
}

/* Announcements Header */
.announcements-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.announcements-header h2 {
  font-size: 24px;
  font-weight: 600;
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* Dates Box */
.dates-box {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.dates-box h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.date-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

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

.date-item span:last-child {
  font-weight: 500;
  color: var(--primary);
}

/* Link Arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 500;
  font-size: 14px;
}

.link-arrow:hover {
  text-decoration: underline;
}

/* CTA Box */
.cta-box {
  background: var(--primary);
  color: white;
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
}

.cta-box h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.cta-box p {
  opacity: 0.9;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Content Section */
.content-section {
  padding: 48px 0;
}

.content-main h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 32px 0 16px;
}

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

.content-main p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-main ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.content-main ul li {
  color: var(--text-light);
  margin-bottom: 8px;
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

/* Tanıtım Grid - Responsive */
.tanitim-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

@media (max-width: 992px) {
  .content-grid,
  .tanitim-grid {
    grid-template-columns: 1fr;
  }
}

/* Sidebar */
.sidebar-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.sidebar-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-card ul {
  list-style: none;
}

.sidebar-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.sidebar-card ul li:last-child {
  border-bottom: none;
}

.sidebar-card.highlight {
  background: var(--primary);
  color: white;
}

.sidebar-card.highlight a {
  color: var(--secondary);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Info */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(26,95,74,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 14px;
  color: var(--text-light);
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.team-card {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  text-align: center;
}

.team-avatar {
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  margin: 0 auto 12px;
}

.team-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-card p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.team-role {
  display: inline-block;
  background: var(--primary);
  color: white !important;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

/* Badge */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.badge-secondary {
  background: var(--bg-light);
  color: var(--text-light);
}

/* Program */
.program-day {
  background: white;
  border-radius: var(--radius);
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.program-header {
  width: 100%;
  padding: 20px 24px;
  background: var(--bg-light);
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.program-header:hover {
  background: var(--border);
}

.program-events {
  display: none;
}

.program-events.active {
  display: block;
}

.program-event {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 20px;
}

.program-event:last-child {
  border-bottom: none;
}

.event-time {
  min-width: 120px;
  font-size: 14px;
  color: #888;
  font-family: inherit;
  flex-shrink: 0;
}

.event-details h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.event-location {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 4px;
}

.event-speakers {
  font-size: 13px;
  color: var(--primary);
  margin-top: 4px;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-left: 56px;
  margin-bottom: 32px;
}

.timeline-dot {
  position: absolute;
  left: 11px;
  top: 4px;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--border);
}

.timeline-content {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.timeline-content.completed {
  border-left: 3px solid #22c55e;
}

.timeline-date {
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 8px;
}

.timeline-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 14px;
  color: var(--text-light);
}

/* Announcement Detail */
.announcement-detail {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.announcement-detail-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.announcement-detail-header .date {
  font-size: 14px;
  color: var(--text-light);
}

.announcement-detail-content {
  line-height: 1.8;
}

.announcement-detail-content p {
  margin-bottom: 16px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  margin-top: 24px;
}

.back-link:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: var(--primary);
  color: white;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding: 48px 0;
}

.footer-section h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-section p {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.6;
}

.footer-menu,
.footer-section ul {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu li,
.footer-section ul li {
  display: block;
  margin-bottom: 10px;
}

.footer-menu a,
.footer-section ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.85;
  display: block;
}

.footer-menu a:hover,
.footer-section ul li a:hover {
  opacity: 1;
  color: var(--secondary);
}

/* Footer Contact Links */
.footer-link {
  color: white !important;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-link:hover {
  color: var(--secondary) !important;
}

/* Footer Social Buttons */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.25s ease;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.social-btn.facebook {
  background: #1877f2;
}

.social-btn.twitter {
  background: #1da1f2;
}

.social-btn.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.linkedin {
  background: #0077b5;
}

.social-btn.youtube {
  background: #ff0000;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright p {
  font-size: 14px;
  opacity: 0.7;
  margin: 0;
}

.footer-credit p {
  font-size: 14px;
  opacity: 0.7;
  margin: 0;
}

.footer-credit a {
  color: var(--secondary);
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.footer-credit a:hover {
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero h1.two-lines {
    font-size: 28px;
  }
  
  .hero h1 .line-2 {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero h1.two-lines {
    font-size: 24px;
  }
  
  .hero h1 .line-2 {
    font-size: 18px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .page-header h1 {
    font-size: 24px;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .cta-box {
    padding: 32px 24px;
  }
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: white;
  color: var(--text);
  font-size: 14px;
  box-shadow: var(--shadow);
}

.pagination a:hover {
  background: var(--primary);
  color: white;
}

.pagination .current {
  background: var(--primary);
  color: white;
}

/* Screen Reader */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
