@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Georgian:wght@100..900&display=swap');

:root {
  --fs-300: 0.9375rem;
  --fs-400: 1.0625rem;
  --fs-500: 1.375rem;
  --fs-600: 1.875rem;
  --fs-700: 2rem;

  --ff-body: "Roboto", sans-serif;
  --ff-heading: "Playfair Display", serif;

  --fw-400: 400;
  --fw-700: 700;
  --fw-900: 900;

  --clr-primary-200: hsla(169, 70%, 95%, 1);

  --clr-neutral-100: hsla(0, 0%, 100%, 1);
  --clr-neutral-300: hsla(0, 0%, 50%, 1);
  --clr-neutral-400: hsla(0, 0%, 40%, 1);
  --clr-neutral-500: hsla(0, 0%, 60%, 1);
  --clr-neutral-900: hsla(0, 0%, 10%, 1);
}

@media (min-width: 35em) {
  :root {
    --fs-300: 1rem;
    --fs-400: 1.125rem;
    --fs-500: 1.5rem;
    --fs-600: 2.25rem;
    --fs-700: 3rem;
  }
}

/* //////////////////////
  RESET - source: https://piccalil.li/blog/a-modern-css-reset
  /////////////////////// */

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  font-family: "Noto Sans Georgian", sans-serif;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul:where([role="list"]),
ol:where([role="list"]) {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* //////////////////////
  General styling
  /////////////////////// */

body {
  font-family: "Noto Sans Georgian", sans-serif;
  font-size: var(--fs-400);
  color: var(--clr-neutral-900);
}

h1,
h2,
h3 {
  font-family: "Noto Sans Georgian", sans-serif;
  font-weight: var(--fw-900);
  line-height: 1.1;
}

strong {
  font-weight: var(--fw-700);
}

section,
.section {
  padding: min(10vh, 10em) 0;
}



/* //////////////////////
  Utility Classes
  /////////////////////// */

/* select all direct childen of .flow
   and add margin to the top for proper
   spacing */

.flow > *:where(:not(:first-child)) {
  margin-top: var(--flow-spacer, 1em);
}

.container {
  margin-inline: auto;
  padding-inline: 1.5em;
  max-width: 92rem;
}

.container--narrow {
  max-width: 65rem;
}

.flex-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap, 1em);
}

.text-center {
  text-align: center;
}

/* typgraphy */

/* Blog Page - Enhanced Layout */
.section.container {
  position: relative;
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Decorative Background Elements */
.section.container::before,
.section.container::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.section.container::before {
  top: -50px;
  left: -100px;
  width: 180px;
  height: 180px;
  background: rgba(251, 210, 0, 0.1);
}

.section.container::after {
  bottom: -80px;
  right: -90px;
  width: 250px;
  height: 250px;
  background: rgba(251, 210, 0, 0.15);
}

/* Blog Page Title */
.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fbd200;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 50px;
}

/* Blog Grid Adjustments */
.articles__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  justify-content: center;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section.container {
    padding: 60px 15px;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .articles__list {
    gap: 30px;
  }
}



/* //////////////////////
  Header
  /////////////////////// */

/* Header Styles */
.page-header {
  background: #ffffff; /* Clean white background */
  padding: 15px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease-in-out;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Content */
.page-header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Logo */
.logo {
  height: 55px;
  transition: transform 0.3s ease-in-out;
}

.logo:hover {
  transform: scale(1.05);
}

/* Navigation */
.nav-wrapper {
  position: relative;
}

/* Navigation List */
.nav-list {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-list li a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.nav-list li a:hover {
  background: #f7c100; /* Matches yellow buttons */
  color: #fff;
  box-shadow: 0 4px 10px rgba(247, 193, 0, 0.3);
}

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.burger-line {
  width: 32px;
  height: 4px;
  background-color: #333;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .nav-list {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 270px;
    height: 100%;
    background: #ffffff;
    padding: 25px;
    flex-direction: column;
    gap: 20px;
    transition: right 0.4s ease-in-out;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.15);
    z-index: 100;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
  }

  /* Active Navigation */
  .nav-list.show {
    right: 0;
    display: flex;
  }

  /* Burger Menu */
  .burger-menu {
    display: flex;
    z-index: 200;
  }

  /* Burger Menu Animation */
  .burger-menu.open .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger-menu.open .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger-menu.open .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Overlay */
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 50;
    transition: opacity 0.3s ease-in-out;
  }

  .menu-overlay.show {
    display: block;
    opacity: 1;
  }
}




/* //////////////////////
  Footer
  /////////////////////// */
.footer {
  background: linear-gradient(135deg, #1a2a4b, #2e3b4e); 
  color: #ffffff;
  padding: 30px 0; 
  text-align: center;
  font-family: 'Arial', sans-serif;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.footer__text {
  margin-bottom: 20px;
  font-size: 16px;
  letter-spacing: 1px; /* Slight spacing for a modern look */
  color: rgba(255, 255, 255, 0.7);
}

.footer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footer__nav li {
  margin: 0 20px;
  position: relative;
}

.footer__nav li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.4s ease;
}

.footer__nav li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #0d5fa8;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.footer__nav li a:hover {
  color: #0d5fa8; /* Bright blue hover effect */
}

.footer__nav li a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer__text {
    font-size: 14px;
  }

  .footer__nav {
    flex-direction: column;
    align-items: center;
  }

  .footer__nav li {
    margin: 10px 0;
  }

  .footer__nav li a {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .footer__text {
    font-size: 12px;
  }

  .footer__nav li a {
    font-size: 14px;
  }
}


/* //////////////////////
  Homepage
  /////////////////////// */

  .hero {
    background: linear-gradient(135deg, #1c2a54, #3b4a75);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  
  .hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .hero__content {
    max-width: 600px;
    color: #fff;
    margin-right: 40px;
  }
  
  .hero__content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .hero__content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .flex-group {
    display: flex;
    gap: 20px;
  }
  
  .flex-group .btn {
    text-decoration: none;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s ease-in-out;
  }
  
  .btn--primary {
    background-color: #ff4c68;
    color: #fff;
    border: none;
  }
  
  .btn--primary:hover {
    background-color: #e8435a;
  }
  
  .btn--neutral {
    background-color: #ffffff;
    color: #2a3d7f;
    border: 2px solid #2a3d7f;
  }
  
  .btn--neutral:hover {
    background-color: #f0f0f0;
  }
  
  .hero__image {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
  }
  
  .hero__image:hover {
    transform: scale(1.05);
  }
  
  /* Responsiveness */
  @media (max-width: 768px) {
    .hero {
      padding: 60px 0;
    }
  
    .hero .container {
      flex-direction: column;
      align-items: center;
    }
  
    .hero__content {
      text-align: center;
      margin-bottom: 30px;
    }
  
    .hero__content h1 {
      font-size: 2.5rem;
    }
  
    .hero__content p {
      font-size: 1.1rem;
    }
  
    .hero__image {
      max-width: 100%;
    }
  }

/* Featured Articles Section */
.featured-articles {
  background: linear-gradient(135deg, #1c2a54, #3b4a75);
  padding: 100px 0;
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fbd200;
  margin-bottom: 40px;
  text-transform: uppercase;
}

/* Articles Grid */
.articles__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  list-style: none;
  align-items: stretch;
}

/* Article Snippets */
.snippet {
  background: #fff;
  color: #1c2a54;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  text-align: left;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.snippet::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: #fbd200;
}

.snippet:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Snippet Image */
.snippet__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* Snippet Title */
.snippet__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.snippet__title a {
  text-decoration: none;
  color: #1c2a54;
  transition: color 0.3s ease-in-out;
}

.snippet__title a:hover {
  color: #fbd200;
}

/* Snippet Meta & Body */
.snippet__meta {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 10px;
}

.snippet__body {
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* Buttons */
.btn {
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease-in-out, transform 0.2s;
}

.btn--primary {
  background-color: #fbd200;
  color: #1c2a54;
}

.btn--primary:hover {
  background-color: #d1a600;
  transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }

  .articles__list {
    gap: 30px;
  }
}


.founders {
  background-color: #fff; 
  padding: 100px 0;
  color: #333;
  text-align: center;
}

.founders-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1c2a54;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.founder-card {
  background-color: #1c2a54;
  color: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  padding: 30px;
  text-align: center;
  position: relative;
}

.founder-card::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 5px;
  background-color: #fbd200;
  border-radius: 10px;
}

.founder-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.founder-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 5px solid #fbd200;
  margin-bottom: 20px;
  transition: transform 0.3s ease-in-out;
}

.founder-photo:hover {
  transform: scale(1.05);
}

.founder-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.founder-role {
  font-size: 1.1rem;
  color: #fbd200; 
}

/* Responsiveness */
@media (max-width: 768px) {
  .founders-title {
    font-size: 2.5rem;
  }

  .founders-grid {
    gap: 30px;
  }
}

/* About Us Section Styles */
.about-us {
  background: #f4f7fb;
  color: #333333;
  padding: 60px 20px;
  font-family: "Noto Sans Georgian", sans-serif;
  text-align: center;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.abtSection-title {
  font-size: 36px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #333333;
}

.about-description {
  font-size: 18px;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 40px;
}

.sub-title {
  font-size: 28px;
  font-weight: 700;
  color: #f9a825;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.mission-list {
  list-style-type: none;
  padding: 0;
  font-size: 16px;
  color: #555555;
  margin-bottom: 40px;
}

.mission-list li {
  margin-bottom: 15px;
  text-align: left;
  position: relative;
  padding-left: 25px;
}

.mission-list li::before {
  content: "\2022"; /* Bullet point */
  color: #f9a825; /* Yellow bullet color */
  position: absolute;
  left: 0;
  top: 0;
  font-size: 30px;
  line-height: 1;
}

.partners {
  margin-top: 40px;
}

.partners-list {
  list-style-type: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  font-size: 16px;
  color: #555555;
}

.partners-list li {
  text-align: center;
  padding: 10px 20px;
  background: #f9f9f9;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.partners-list li:hover {
  background: #f9a825;
  color: #ffffff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .abtSection-title {
    font-size: 32px;
  }

  .about-description {
    font-size: 16px;
  }

  .sub-title {
    font-size: 24px;
  }

  .mission-list li {
    font-size: 14px;
  }

  .partners-list li {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .abtSection-title {
    font-size: 28px;
  }

  .about-description {
    font-size: 14px;
  }

  .sub-title {
    font-size: 20px;
  }

  .mission-list li {
    font-size: 12px;
  }

  .partners-list li {
    font-size: 12px;
  }
}


.contact-section {
  background: #f4f7fb;
  color: #333333;
  padding: 40px 20px;
  font-family: "Noto Sans Georgian", sans-serif;
  text-align: center;
  box-sizing: border-box;
  height: 40em;
}

.contact-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.contact-title {
  font-size: 32px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #333333;
}

.contact-details p {
  font-size: 16px;
  margin: 10px 0;
  color: #555555;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-details p i {
  margin-right: 10px;
  color: #f9a825;
}

.contact-details a {
  color: #f9a825;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #333333;
}

.contact-form-box {
  margin-top: 30px;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 2px solid #f9a825;
  border-radius: 5px;
  background: transparent;
  color: #333333;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: #f9a825;
  box-shadow: 0 0 10px #f9a825;
}

.contact-button {
  background-color: #f9a825;
  color: #ffffff;
  padding: 12px 30px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.contact-button:hover {
  background-color: #c17900;
}

.contact-button:active {
  background-color: #9e5e00;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-title {
    font-size: 28px;
  }

  .contact-details p {
    font-size: 14px;
  }

  .contact-input,
  .contact-textarea {
    font-size: 14px;
  }

  .contact-button {
    font-size: 16px;
  }

  .contact-details p {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 24px;
  }

  .contact-input,
  .contact-textarea {
    font-size: 14px;
  }

  .contact-button {
    font-size: 16px;
  }

  .contact-details p {
    font-size: 12px;
    text-align: left;
  }
}





/* Article Page - Rich and Engaging Layout */
.main-article {
  max-width: 1100px;
  margin: 120px auto;
  padding: 60px;
  background: #fff;
  color: #1c2a54;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  line-height: 1.8;
  position: relative;
  overflow: hidden;
}

/* Subtle Decorative Background */
.main-article::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(251, 210, 0, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.main-article::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: rgba(251, 210, 0, 0.15);
  border-radius: 50%;
  z-index: 0;
}

/* Narrower Container for Readability */
.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Article Title - Bigger and Bolder */
.article-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fbd200;
  margin-bottom: 30px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1.5px;
}

/* Featured Image & Caption - More Engaging */
.main-article__figure {
  text-align: center;
  margin: 40px 0;
}

.main-article__figure img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.main-article__figure figcaption {
  margin-top: 12px;
  font-size: 1.1rem;
  color: #444;
  font-style: italic;
  opacity: 0.9;
}

/* Article Content - Enhanced Spacing & Readability */
.main-article p {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 25px;
  line-height: 1.9;
}

/* Call-to-Action Section */
.article-cta {
  margin-top: 60px;
  text-align: center;
}

.article-cta a {
  display: inline-block;
  background-color: #fbd200;
  color: #1c2a54;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s ease-in-out, transform 0.2s;
}

.article-cta a:hover {
  background-color: #d1a600;
  transform: scale(1.08);
}

/* Spacing Between Sections */
.main-article h2, 
.main-article h3 {
  color: #1c2a54;
  margin-top: 50px;
  margin-bottom: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .main-article {
    padding: 30px;
  }

  .article-title {
    font-size: 1rem;
  }

  .main-article p {
    font-size: 0.8rem;
  }
}
