/* ============================================
   HERO SECTION - SIMPLE DESIGN
   ============================================ */

.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3em 1em;
  background: #ffffff;
}

.simple-hero {
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.hero-avatar {
  position: relative;
  display: inline-block;
  margin-bottom: 2em;
}

.avatar-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid #e9ecef;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.hero-title {
  margin: 1em 0 0.5em;
}

.hero-name {
  display: block;
  font-size: 2em;
  font-weight: 600;
  color: #2c3e50;
  letter-spacing: -0.3px;
}

.hero-subtitle {
  font-size: 1.2em;
  color: #666;
  margin: 0.5em 0;
  font-weight: 400;
}

.hero-description {
  font-size: 1.05em;
  color: #555;
  line-height: 1.8;
  margin: 1.5em auto;
  max-width: 700px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 1em;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2em 0;
  animation: fadeInUp 1s ease-out 1.1s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.9em 2em;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: #2c3e50;
  color: white;
  border-color: #2c3e50;
}

.btn-primary:hover {
  background: #34495e;
  border-color: #34495e;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #2c3e50;
  border-color: #2c3e50;
}

.btn-secondary:hover {
  background: #f8f9fa;
  border-color: #2c3e50;
}

.btn-outline {
  background: transparent;
  color: #2c3e50;
  border-color: #2c3e50;
}

.btn-outline:hover {
  background: #2c3e50;
  color: white;
}

.hero-social {
  display: flex;
  gap: 1.5em;
  justify-content: center;
  margin-top: 2em;
  animation: fadeInUp 1s ease-out 1.3s both;
}

.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 50%;
  color: #2c3e50;
  font-size: 1.2em;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.social-link:hover {
  background: #e9ecef;
  color: #2980b9;
  transform: translateY(-2px);
}


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

.section {
  padding: 5em 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3em;
}

.section-label {
  display: inline-block;
  padding: 0.4em 1.2em;
  background: #f8f9fa;
  color: #666;
  border-radius: 4px;
  font-size: 0.85em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1em;
}

.section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #2c3e50;
  margin: 0.5em 0;
  line-height: 1.2;
}

.section-description {
  font-size: 1.1em;
  color: #666;
  line-height: 1.8;
  margin-top: 1em;
}

.section-footer {
  text-align: center;
  margin-top: 3em;
}

/* ============================================
   NEWS BANNER
   ============================================ */

.news-banner-section {
  background: #ffffff;
}

.news-banner-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  background: #f8f9fa;
  border-radius: 16px;
  padding: 2em;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #e9ecef;
}

.news-banner-wrapper {
  position: relative;
  min-height: 250px;
  overflow: hidden;
}

.news-slide {
  display: none;
  animation: fadeIn 0.5s ease-in;
}

.news-slide:first-child {
  display: block;
}

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

.news-slide-content {
  padding: 1em;
}

.news-date {
  display: flex;
  align-items: center;
  gap: 0.5em;
  color: #666;
  font-size: 0.9em;
  margin-bottom: 1em;
}

.news-date i {
  color: #2980b9;
}

.news-title {
  font-size: 1.8em;
  font-weight: 700;
  color: #2c3e50;
  margin: 0.5em 0;
  line-height: 1.3;
}

.news-excerpt {
  font-size: 1.1em;
  color: #666;
  line-height: 1.8;
  margin: 1.5em 0;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: #2980b9;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1em;
}

.news-link:hover {
  color: #3498db;
  gap: 0.8em;
}

.news-banner-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5em;
  margin-top: 2em;
  padding-top: 1.5em;
  border-top: 1px solid #e9ecef;
}

.news-nav-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #e9ecef;
  background: white;
  color: #2c3e50;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.2em;
}

.news-nav-btn:hover {
  background: #2980b9;
  color: white;
  border-color: #2980b9;
  transform: scale(1.1);
}

.news-indicators {
  display: flex;
  gap: 0.5em;
  align-items: center;
}

.news-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e9ecef;
  cursor: pointer;
  transition: all 0.3s ease;
}

.news-indicator.active {
  background: #2980b9;
  width: 30px;
  border-radius: 5px;
}

/* ============================================
   PAGE REFERENCES
   ============================================ */

.page-references-section {
  background: #ffffff;
}

.page-references-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2em;
  margin-top: 3em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-reference-card {
  background: white;
  padding: 2.5em 2em;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  text-decoration: none;
  color: inherit;
  display: block;
}

.page-reference-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-color: #2980b9;
}

.page-reference-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
  border-radius: 50%;
  color: white;
  font-size: 2em;
  transition: all 0.3s ease;
}

.page-reference-card:hover .page-reference-icon {
  transform: scale(1.1) rotate(5deg);
}

.page-reference-card h3 {
  font-size: 1.5em;
  font-weight: 700;
  color: #2c3e50;
  margin: 0.5em 0;
}

.page-reference-card p {
  font-size: 1em;
  color: #666;
  line-height: 1.7;
  margin: 1em 0 1.5em;
}

.page-reference-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: #2980b9;
  font-weight: 600;
  transition: all 0.3s ease;
}

.page-reference-card:hover .page-reference-link {
  gap: 0.8em;
  color: #3498db;
}

/* ============================================
   RECENT ARTICLES
   ============================================ */

.recent-articles-section {
  background: #ffffff;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2em;
  margin-top: 3em;
}

.article-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  overflow: hidden;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-color: #2980b9;
}

.article-card-content {
  padding: 2em;
}

.article-meta {
  display: flex;
  gap: 1.5em;
  margin-bottom: 1em;
  font-size: 0.85em;
  color: #666;
  flex-wrap: wrap;
}

.article-date,
.article-category {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.article-date i,
.article-category i {
  color: #2980b9;
}

.article-title {
  font-size: 1.4em;
  font-weight: 700;
  color: #2c3e50;
  margin: 0.5em 0 1em;
  line-height: 1.3;
}

.article-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-title a:hover {
  color: #2980b9;
}

.article-excerpt {
  font-size: 1em;
  color: #666;
  line-height: 1.7;
  margin: 1em 0 1.5em;
}

.article-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: #2980b9;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.article-read-more:hover {
  gap: 0.8em;
  color: #3498db;
}

@media screen and (max-width: 768px) {
  .news-banner-container {
    padding: 1.5em;
  }
  
  .news-title {
    font-size: 1.5em;
  }
  
  .page-references-grid {
    grid-template-columns: 1fr;
    gap: 1.5em;
  }
  
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 1.5em;
  }
}

/* ============================================
   ABOUT PREVIEW
   ============================================ */

.about-preview {
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2em;
  margin-top: 3em;
}

.about-card {
  background: white;
  padding: 2.5em 2em;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

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

.about-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 50%;
  color: #2c3e50;
  font-size: 1.8em;
  border: 2px solid #e9ecef;
}

.about-card h3 {
  font-size: 1.3em;
  color: #2c3e50;
  margin-bottom: 1em;
}

.about-card p {
  color: #666;
  line-height: 1.8;
  font-size: 1em;
}

/* ============================================
   SKILLS SECTION
   ============================================ */

.skills-section {
  background: white;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2em;
  margin-top: 3em;
}

.skill-category {
  background: #ffffff;
  padding: 2em;
  border-radius: 8px;
  border-left: 3px solid #2c3e50;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.skill-category:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.skill-category-title {
  font-size: 1.2em;
  color: #2c3e50;
  margin-bottom: 1.5em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.skill-category-title i {
  color: #2c3e50;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8em;
}

.skill-tag {
  padding: 0.5em 1em;
  background: #f8f9fa;
  color: #2c3e50;
  border-radius: 4px;
  font-size: 0.9em;
  font-weight: 400;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.skill-tag:hover {
  background: #e9ecef;
  color: #2c3e50;
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */

.experience-section {
  background: #f8f9fa;
}

.experience-timeline-compact {
  max-width: 800px;
  margin: 3em auto 0;
}

.exp-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 2em;
  padding: 2em;
  background: white;
  border-radius: 8px;
  margin-bottom: 1.5em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border-left: 3px solid #2c3e50;
  border: 1px solid #e9ecef;
}

.exp-item:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.exp-year {
  font-weight: 600;
  color: #2c3e50;
  font-size: 1em;
}

.exp-content h3 {
  font-size: 1.4em;
  color: #2c3e50;
  margin-bottom: 0.3em;
}

.exp-company {
  color: #555;
  font-weight: 500;
  margin-bottom: 0.5em;
}

.exp-description {
  color: #666;
  line-height: 1.6;
}

/* ============================================
   PROJECTS SECTION
   ============================================ */

.projects-section {
  background: white;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2em;
  margin-top: 3em;
}

.project-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.project-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 80, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  color: #2c3e50;
  font-size: 1.3em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.project-link:hover {
  transform: scale(1.1) rotate(5deg);
}

.project-content {
  padding: 2em;
}

.project-title {
  font-size: 1.4em;
  color: #2c3e50;
  margin-bottom: 0.8em;
}

.project-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1em;
}

.project-meta {
  display: flex;
  align-items: center;
  gap: 0.5em;
  color: #888;
  font-size: 0.9em;
}

.project-lang i {
  color: #2c3e50;
}

/* ============================================
   ARTICLES SECTION
   ============================================ */

.articles-section {
  background: #f8f9fa;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2em;
  margin-top: 3em;
}

.article-card {
  background: white;
  border-radius: 12px;
  padding: 2em;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  gap: 1.5em;
  border-left: 4px solid #2980b9;
}

.article-card:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.article-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  padding: 1em;
  background: #f8f9fa;
  border-radius: 8px;
  color: #2c3e50;
  text-align: center;
  border: 1px solid #e9ecef;
}

.article-month {
  font-size: 0.8em;
  text-transform: uppercase;
  opacity: 0.9;
}

.article-day {
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1;
}

.article-content {
  flex: 1;
}

.article-title {
  font-size: 1.3em;
  margin-bottom: 0.8em;
}

.article-title a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-title a:hover {
  color: #555;
}

.article-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1em;
}

.article-link {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  transition: all 0.3s ease;
}

.article-link:hover {
  color: #555;
}

.article-link:hover {
  gap: 0.8em;
}

/* ============================================
   CONTACT CTA
   ============================================ */

.contact-cta {
  background: #f8f9fa;
  color: #2c3e50;
  text-align: center;
  padding: 4em 2em;
  border-radius: 8px;
  margin: 3em 0;
  border: 1px solid #e9ecef;
}

.cta-content h2 {
  font-size: 2.2em;
  margin-bottom: 1em;
  color: #2c3e50;
}

.cta-content p {
  font-size: 1.1em;
  color: #666;
  max-width: 600px;
  margin: 0 auto 2em;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 1em;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: #2c3e50;
  color: white;
}

.cta-buttons .btn-outline {
  border-color: #2c3e50;
  color: #2c3e50;
}

.cta-buttons .btn-outline:hover {
  background: #f8f9fa;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media screen and (max-width: 768px) {
  .hero-name {
    font-size: 2.5em;
  }
  
  .hero-subtitle {
    font-size: 1.4em;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    justify-content: center;
  }
  
  .section-title {
    font-size: 2em;
  }
  
  .about-grid,
  .skills-grid,
  .projects-grid,
  .articles-grid {
    grid-template-columns: 1fr;
  }
  
  .exp-item {
    grid-template-columns: 1fr;
    gap: 1em;
  }
  
  .exp-year {
    font-size: 0.9em;
  }
  
  .article-card {
    flex-direction: column;
  }
  
  .article-date {
    align-self: flex-start;
  }
}

@media screen and (max-width: 480px) {
  .hero-section {
    min-height: 90vh;
    padding: 1em;
  }
  
  .avatar-image {
    width: 120px;
    height: 120px;
  }
  
  .hero-name {
    font-size: 2em;
  }
  
  .section {
    padding: 3em 0;
  }
}

/* ============================================
   MODERN NAVIGATION
   ============================================ */

.modern-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.modern-nav .logo {
  display: flex;
  align-items: center;
  gap: 0.3em;
  text-decoration: none;
}

.logo-text {
  font-size: 1.5em;
  font-weight: 700;
  color: #2980b9;
}

.logo-text-secondary {
  font-size: 1.5em;
  font-weight: 300;
  color: #2c3e50;
}

.modern-nav .navigation-menu {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

/* Desktop: Always show menu and hide hamburger */
@media screen and (min-width: 769px) {
  .modern-nav .navigation-menu {
    display: flex !important;
  }
  
  .modern-nav .navigation-menu-button {
    display: none !important;
  }
}

.modern-nav .nav-link a {
  padding: 0.6em 1.2em;
  border-radius: 25px;
  transition: all 0.3s ease;
  color: #2c3e50;
  font-weight: 500;
  position: relative;
}

.modern-nav .nav-link a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #2980b9;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.modern-nav .nav-link a:hover {
  color: #2980b9;
  background: rgba(41, 128, 185, 0.05);
}

.modern-nav .nav-link a:hover::after {
  width: 60%;
}

.nav-resume-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.nav-resume-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.nav-resume-btn::after {
  display: none;
}

.modern-nav .navigation-menu-button {
  display: none; /* Hidden by default - only show on mobile */
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 30px;
  justify-content: center;
  cursor: pointer;
}

.modern-nav .navigation-menu-button span {
  width: 100%;
  height: 3px;
  background: #2c3e50;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.modern-nav .navigation-menu-button.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.modern-nav .navigation-menu-button.active span:nth-child(2) {
  opacity: 0;
}

.modern-nav .navigation-menu-button.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Show hamburger only on mobile */
@media screen and (max-width: 768px) {
  .modern-nav .navigation-menu-button {
    display: flex;
  }
  
  .modern-nav .navigation-menu {
    display: none; /* Hidden by default on mobile */
    flex-direction: column;
    align-items: stretch;
    padding: 1em 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  
  .modern-nav .navigation-menu.show {
    display: flex;
  }
  
  .modern-nav .nav-link {
    width: 100%;
  }
  
  .modern-nav .nav-link a {
    display: block;
    padding: 1em;
    border-radius: 8px;
  }
}

/* ============================================
   SMOOTH SCROLLING
   ============================================ */

html {
  scroll-behavior: smooth;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

/* Scroll reveal animations */
.section {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.section:nth-child(1) { animation-delay: 0.1s; }
.section:nth-child(2) { animation-delay: 0.2s; }
.section:nth-child(3) { animation-delay: 0.3s; }
.section:nth-child(4) { animation-delay: 0.4s; }
.section:nth-child(5) { animation-delay: 0.5s; }

/* ============================================
   UTILITY CLASSES
   ============================================ */

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2em;
}

@media screen and (max-width: 768px) {
  .wrapper {
    padding: 0 1em;
  }
}

