.light-theme {
  /**
     * light theme colors 
     */

  --background-primary: hsla(0, 0%, 100%);
  --background-secondary: hsla(0, 0%, 97%);

  --action-primary: hsl(214, 32%, 91%);
  --action-secondary: hsl(210, 38%, 95%);

  --foreground-primary: hsl(218, 23%, 23%);
  --foreground-secondary: hsl(216, 15%, 52%);
  --foreground-tertiary: hsl(214, 20%, 69%);

  --accent: hsl(229, 76%, 66%);
}

.dark-theme {
  /**
     * dark theme colors 
     */

  --background-primary: hsl(218, 23%, 23%);
  --background-secondary: hsl(220, 26%, 14%);

  --action-primary: hsl(216, 15%, 52%);
  --action-secondary: hsl(218, 23%, 23%);

  --foreground-primary: hsl(210, 38%, 95%);
  --foreground-secondary: hsl(211, 25%, 84%);
  --foreground-tertiary: hsl(214, 20%, 69%);

  --accent: hsl(229, 76%, 66%);
}

:root {
  /**
     * color
     */

  --white: hsl(0, 0%, 100%);

  /**
     * typography 
     */

  --fs-base: 0.85rem;
  --fs-1: 1.875rem;
  --fs-2: 1.5rem;
  --fs-3: 1.25rem;
  --fs-4: 0.875rem;
  --fs-5: 0.75rem;

  /**
     * spacing 
     */

  --py: 5rem;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
}

/*-----------------------------------*\ 
  #RESET
\*-----------------------------------*/

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

a {
  text-decoration: none;
}

li {
  list-style: none;
}

img,
button {
  display: block;
}

a,
span {
  display: inline-block;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

html {
  font-family: "Inter", sans-serif;
  font-size: var(--fs-base); /* base font-size (0.85rem = 13.6px) */
  line-height: 1.8;
}

:focus {
  outline-offset: 4px;
}

/**
   * scrollbar style
   */

::-webkit-scrollbar {
  width: 16px;
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 20px;
  border: 4px solid;
}

.light-theme::-webkit-scrollbar-thumb {
  border-color: hsl(0, 0%, 90%);
}

.dark-theme::-webkit-scrollbar-thumb {
  border-color: hsl(219, 27%, 20%);
}

.light-theme::-webkit-scrollbar-track {
  background: hsl(0, 0%, 90%);
}

.dark-theme::-webkit-scrollbar-track {
  background: hsl(219, 27%, 20%);
}

/*-----------------------------------*\ 
    #BASE STYLE
\*-----------------------------------*/

.h1,
.h2,
.h3,
.h4 {
  display: block;
  color: var(--foreground-primary);
}

.h1 {
  font-size: var(--fs-1);
  font-weight: 900;
}

.h2 {
  font-size: var(--fs-2);
  font-weight: 700;
}

.h3 {
  font-size: var(--fs-3);
  font-weight: 700;
}

.h4 {
  font-size: var(--fs-4);
  font-weight: 700;
}

.text-sm {
  font-size: var(--fs-4);
}

.text-tiny {
  font-size: var(--fs-5);
}

/*-----------------------------------*\ 
  #REUSED STYLE
\*-----------------------------------*/

.container {
  margin-inline: auto;
  margin: auto; /* fallback for margin-inline */
  padding: 0 15px;
}

.btn {
  min-width: 10rem;
  border-radius: 100px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 0.6875rem 1.1875rem;
}

.btn-primary:hover {
  background: var(--foreground-secondary);
  color: var(--action-primary);
}

.btn-secondary {
  background: var(--action-secondary);
  color: var(--foreground-secondary);
  padding: 0.5rem 1rem;
  border: 3px solid var(--foreground-tertiary);
}

.btn-secondary:hover {
  border-color: var(--accent);
}

/*-----------------------------------*\ 
  #Extra style for dark theme
\*-----------------------------------*/

.dark-theme .btn-primary:hover {
  color: var(--background-primary);
}

.dark-theme .blog-topic {
  background: var(--action-primary);
  color: var(--foreground-secondary);
}

.dark-theme .blog-topic:hover {
  background: var(--foreground-primary);
  color: var(--action-primary);
}

.dark-theme .load-more:hover {
  color: var(--white);
}

.dark-theme .aside .h2 {
  color: var(--foreground-primary);
}

/*-----------------------------------*\ 
  #HEADER
\*-----------------------------------*/

header {
  background: var(--background-primary);
}

header .flex-wrapper {
  display: none;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
}

.icon {
  display: flex;
  align-items: center;
}

.logo-light,
.logo-dark {
  display: none;
}

.light-theme .logo-light,
.dark-theme .logo-dark {
  display: inline-flex;
}

.logo-text {
  align-items: center;
  font-family: "Orbitron", cursive;
  font-weight: 800;
  background: linear-gradient(
    45deg,
    rgb(79, 79, 226),
    rgb(210, 106, 210)
  ); /* Define the gradient colors */
  -webkit-background-clip: text;
  background-clip: text; /* Standard property */
  -webkit-text-fill-color: transparent;
  color: transparent; /* Standard property */
  margin-left: 0px; /* Adjust this value as needed */
  font-size: 1.8rem; /* Adjust this value as needed */
}

header .btn-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.theme-btn-mobile,
.nav-menu-btn,
.nav-close-btn {
  background: var(--action-secondary);
  color: var(--foreground-tertiary);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 25px;
}

:is(.theme-btn-mobile, .nav-menu-btn, .nav-close-btn):hover {
  background: var(--accent);
  color: var(--white);
}

.theme-btn-mobile ion-icon {
  display: none;
}

.theme-btn-mobile.light .sun,
.theme-btn-mobile.dark .moon {
  display: block;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--background-primary);
  padding: 70px 20px;
  overflow: auto;
  overscroll-behavior: contain;
  transform: translateX(100%);
  visibility: hidden;
  transition: 0.5s cubic-bezier(1, 0, 0.3, 0.7);
  z-index: 10;
}

.mobile-nav.active {
  transform: translateX(0);
  visibility: visible;
}

.nav-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
}

.mobile-nav .wrapper {
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--action-primary);
}

.mobile-nav .nav-title {
  margin-bottom: 1rem;
}

.mobile-nav .nav-item {
  margin-bottom: 0.5rem;
}

.mobile-nav .nav-link {
  font-size: var(--fs-3);
  color: var(--foreground-secondary);
}

.mobile-nav .nav-link:hover {
  color: var(--accent);
}

/*-----------------------------------*\ 
  #HERO SECTION
\*-----------------------------------*/

.hero {
  background: var(--background-primary);
  padding-top: 2rem;
  padding-bottom: var(--py);
  text-align: center;
}

.hero .h1 {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.hero b {
  color: var(--accent);
  font-weight: inherit;
}

.hero .h3 {
  color: var(--foreground-secondary);
  margin-bottom: 2rem;
}

.hero .btn-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  text-align: center;
}

.hero .right {
  display: none;
}

/*-----------------------------------*\ 
  #BLOG SECTION
\*-----------------------------------*/

.main {
  background: var(--background-secondary);
  padding: var(--py) 0;
}

.blog .h2 {
  line-height: 1.3;
  margin-bottom: 3rem;
  text-align: center;
}

.blog-card-group {
  margin-bottom: 3rem;
  height: auto;
}

.blog-card {
  width: 140%;
  height: auto;
  background: var(--background-primary);
  padding: 10px;
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: 0 10px 10px hsla(0, 0%, 0%, 0.05);
  transition: 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 10px hsla(0, 0%, 0%, 0.1);
}

.blog-card-banner {
  display: none;
}

.blog-content-wrapper {
  padding: 10px 5px;
  height: auto;
}

.blog-topic {
  display: inline-block;
  background: var(--action-secondary);
  color: var(--foreground-secondary);
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.blog-topic:hover {
  background: var(--foreground-secondary);
  color: var(--action-secondary);
}

.blog-card .h3 {
  line-height: 1.4;
  margin-bottom: 1rem;
}

.blog-card .h3:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.blog-text {
  display: block;
  height: 80%;
  overflow: visible; /* Allow full text visibility */
  text-overflow: unset; /* Remove any ellipsis truncation */
  white-space: normal; /* Allow text to wrap */
  line-height: 1.6; /* Set line height for better readability */
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
}

.blog .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.blog .h4 {
  color: var(--foreground-secondary);
}

.blog .h4:hover {
  color: var(--accent);
}

.blog .text-sm {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--foreground-tertiary);
}

.blog .separator {
  background: var(--foreground-tertiary);
  margin-inline: 3px;
  margin: 0 3px;
  width: 3px;
  height: 3px;
  border-radius: 3px;
}

.blog ion-icon {
  --ionicon-stroke-width: 50px;
}

.load-more {
  margin-inline: auto;
  margin: auto;
  background: var(--foreground-secondary);
  color: var(--background-secondary);
  padding: 0.6875rem 1.1875rem;
}

.load-more:hover {
  background: var(--accent);
}

/*-----------------------------------*\
# Notes
\*-----------------------------------*/

.notes-section {
  position: relative;
  padding: 3rem; /* Increase padding for better spacing */
  text-align: center;
  margin: 0;
  border: none;
  overflow: hidden; /* Ensures pseudo-elements stay within bounds */
}

.notes-section::before {
  /* Background image with blur */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("./../assets/images/notes-background2.jpeg") no-repeat center
    center / cover;
  opacity: 1; /* Reduce background opacity */
  /*filter: brightness(1) blur(5px); /* Apply blur and dim the image */
  z-index: 1; /* Place behind content */
}

.notes-header-container {
  position: relative;
  max-width: 1000px; /* Enlarge container size */
  margin: 0 auto 2rem;
  text-align: center;
  padding: 1.5rem; /* Increase padding for larger container */
  background: rgba(255, 255, 255, 0.9); /* Slightly opaque light background */
  border: 3px solid #007983; /* Bold border for emphasis */
  border-radius: 12px; /* Slightly rounded corners */
  z-index: 3; /* Ensure it's above the blurred background */
}

.notes-title {
  font-size: 2rem; /* Increase font size for title */
  font-weight: bold;
  color: #004d5a; /* Darker teal for better contrast */
  margin-bottom: 0.5rem; /* Adjust spacing below title */
}

.notes-description {
  font-size: 1.25rem; /* Slightly smaller font size for description */
  line-height: 1.5;
  color: #007983; /* Complementary color to title */
  margin: 0;
}

.fields-container {
  position: relative;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
  z-index: 3; /* Ensure content is above the blurred background */
}

.field {
  background: rgba(0, 77, 90, 0.85); /* Darker background for better contrast */
  border: 2px solid #ffffff; /* Add white border for visibility */
  border-radius: 10px;
  padding: 1.5rem;
  width: 270px; /* Slightly wider boxes */
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Slightly stronger shadow */
  margin: 1rem auto; /* Center fields on the page */
}

.field h3 {
  font-size: 1.5rem; /* Slightly larger font for field headings */
  color: #ffffff; /* White text for contrast */
  margin-bottom: 1rem;
}

.field ul {
  list-style: none;
  padding: 0;
}

.field li {
  margin-bottom: 0.5rem;
}

.model {
  position: relative; /* Position relative for hover dropdown */
  margin-bottom: 1rem;
  text-align: center;
}

.model span {
  display: block;
  font-size: 1.1rem;
  color: #ffffff;
  background: rgba(0, 122, 140, 0.9);
  padding: 0.75rem;
  border-radius: 5px;
  cursor: pointer;
}

.model-links {
  display: none; /* Initially hidden */
  position: absolute;
  top: 100%; /* Position below the model name */
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 77, 90, 0.9); /* Slightly darker background for links */
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  z-index: 10;
  padding: 0.5rem;
}

.model:hover .model-links {
  display: flex; /* Show on hover */
  flex-direction: row; /* Arrange links horizontally */
  justify-content: space-between;
  gap: 0.5rem;
}

.link {
  font-size: 0.85rem; /* Smaller font size for tooltips */
  color: #ffffff;
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border-radius: 5px;
  background: rgba(0, 122, 140, 0.9);
  display: flex;
  align-items: center;
  gap: 0.5rem; /* Space between icon and text */
  transition: background 0.3s, color 0.3s;
}

.link:hover {
  background: #00c4d6;
  color: #000000;
}

.notes-section ion-icon {
  font-size: 1rem; /* Adjust icon size */
  color: #ffffff; /* White color for icons */
  vertical-align: middle; /* Align with text */
}

/*-----------------------------------*\
#FOOTER
\*-----------------------------------*/

.section-contact-me {
  background-image: url(../assets/images/footer-background.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  display: grid;
  font-size: 1.5rem;
  font-weight: 500;
  height: 240px;
  padding: 30px 0;
  place-items: center;
  text-align: center;
  width: 100%;
}

#contact-me-heading {
  color: #0f2d39;
  font-size: 1.5em;
  font-weight: 600;
  padding: 20px 0;
  position: relative;
  top: -10px;
  margin-bottom: 20px;
}

.wrapper {
  display: inline-flex;
}

.wrapper .fa,
.wrapper .icon-linkedin,
.wrapper .icon-github {
  align-items: center;
  background-color: #79adc2;
  border-radius: 50%;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  color: #000031;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 50px;
  justify-content: center;
  margin: -10px 150px;
  padding: 0px;
  position: relative;
  transition: all 0.1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  width: 60px;
  height: 60px;
  font-size: 40px;
  transition: background-color 1s;
}

@media (max-width: 1100px) {
  .wrapper .fa,
  .wrapper .icon-linkedin,
  .wrapper .icon-github {
    margin: 10px 40px;
  }
}

@media (max-width: 768px) {
  .wrapper .fa,
  .wrapper .icon-linkedin,
  .wrapper .icon-github {
    margin: 10px 15px;
  }
}

@media (max-width: 500px) {
  .wrapper .fa,
  .wrapper .icon-linkedin,
  .wrapper .icon-github {
    margin: 10px 2px;
  }
}

.fa .tooltip-email {
  position: absolute;
  top: -40px;
  font-size: 20px;
  background-color: rgb(200, 58, 122);
  color: white;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 1s;
  pointer-events: none;
}

.icon-linkedin .tooltip-linkedin {
  position: absolute;
  top: -40px;
  font-size: 20px;
  background-color: rgb(54, 80, 184);
  color: white;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 1s;
  pointer-events: none;
}

.icon-github .tooltip-github {
  position: absolute;
  top: -40px;
  font-size: 20px;
  background-color: rgb(0, 0, 0);
  color: white;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 1s;
  pointer-events: none;
}

/* Add a hover effect if you want */
.fa-email:hover {
  background-color: rgb(200, 58, 122);
  color: white;
}

.fa:hover .tooltip-email {
  opacity: 1;
}

.fa-linkedin:hover {
  background-color: rgb(54, 80, 184);
  color: white;
}

.icon-linkedin:hover .tooltip-linkedin {
  opacity: 1;
}

.fa-github:hover {
  background-color: rgb(0, 0, 0);
  color: white;
}

.icon-github:hover .tooltip-github {
  opacity: 1;
}

/*-----------------------------------*\
#MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 550px screen
 */

@media (min-width: 550px) {
  :root {
    /**
     * typography 
     */

    --fs-base: 0.9rem;
  }

  /**
   * BLOG 
   */

  .blog-card {
    display: grid;
    grid-template-columns: 3fr 4fr;
    gap: 20px;
  }

  .blog-card-banner {
    display: block;
    overflow: hidden;
    border-radius: 5px;
  }

  .blog-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/**
 * responsive for larger than 650px screen
 */

@media (min-width: 650px) {
  :root {
    /**
     * typography 
     */

    --fs-1: 2.25rem;
  }

  /**
   * REUSED STYLE 
   */

  .container {
    padding: 0 30px;
  }

  /**
   * HEADER 
   */

  .navbar {
    padding: 30px 0;
  }

  /**
   * BLOG 
   */

  .blog .h2 {
    position: relative;
    text-align: left;
    padding-left: 2rem;
  }

  .blog .h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: var(--action-primary);
    width: 5px;
    height: 100%;
    border-radius: 5px;
  }

  .blog-text,
  .profile-wrapper {
    display: block;
  }

  .blog-text {
    color: var(--foreground-secondary);
    font-size: var(--fs-4);
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
  }

  .blog .wrapper-flex {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
  }

  .profile-wrapper {
    width: 56px;
    height: 56px;
    background: var(--action-primary);
    padding: 3px;
    border-radius: 50%;
  }

  .profile-wrapper img {
    border-radius: 50%;
  }

  .blog .wrapper {
    flex-direction: column;
    align-items: start;
    gap: 0;
  }

  /**
   * FOOTER 
   */

  footer .container {
    padding: var(--py) 30px;
    grid-template-columns: 2fr 1fr 1fr;
  }

  footer .wrapper {
    text-align: left;
  }

  .footer-text {
    margin: 0;
  }
}

/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {
  /**
   * REUSED STYLE 
   */

  .container {
    max-width: 800px;
  }
}

/**
 * responsive for larger than 1024px screen
 */

@media (min-width: 1024px) {
  :root {
    /**
     * typography 
     */

    --fs-base: 1rem;
    --fs-1: 3rem;
  }

  /**
   * REUSED STYLE 
   */

  .container {
    max-width: 1150px;
  }

  /**
   * HEADER 
   */

  header .btn-group {
    display: none;
  }

  header .flex-wrapper {
    display: flex;
    gap: 30px;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .desktop-nav .nav-link {
    color: var(--foreground-secondary);
    font-weight: 700;
  }

  .desktop-nav .nav-link:hover {
    color: var(--accent);
  }

  .theme-btn-desktop {
    position: relative;
    background: var(--background-secondary);
    color: var(--white);
    width: 52px;
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
  }

  .theme-btn-desktop.light {
    background: linear-gradient(45deg, hsl(7, 100%, 71%), hsl(46, 100%, 65%));
  }

  .theme-btn-desktop.dark {
    background: linear-gradient(45deg, hsl(225, 100%, 60%), hsl(296, 80%, 40%));
  }

  .theme-btn-desktop::before {
    content: "";
    position: absolute;
    background: var(--white);
    width: 21px;
    height: 21px;
    border-radius: 30px;
    top: 50%;
    left: 3px;
    transform: translateY(-50%);
    box-shadow: 0 2px 10px -2px hsla(0, 0%, 0%, 0.05);
    z-index: 2;
  }

  .theme-btn-desktop.dark::before {
    left: calc(100% - 24px);
  }

  /**
   * HERO 
   */

  .hero {
    text-align: left;
  }

  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
  }

  .hero .btn-group {
    justify-content: start;
    gap: 30px;
  }

  .hero .right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero .pattern-bg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 147%;
    height: 200px;
    background: url(../images/background.png);
    background-size: contain;
    opacity: 0.2;
  }

  .hero .img-box {
    position: relative;
    z-index: 2;
  }

  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0 0 280px 230px;
    transform: translate(8px, 10px);
  }

  .hero .shape {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-51%, -41%) rotate(-20deg);
  }

  .hero .shape-1 {
    background: var(--accent);
    width: 96%;
    height: 94%;
    z-index: -1;
  }

  .hero .shape-2 {
    width: 98%;
    height: 94%;
    box-shadow: inset 0 -30px 5px var(--action-primary);
    z-index: 2;
  }

  /**
   * MAIN 
   */

  .main .container {
    display: grid;
    grid-template-columns: 5fr 2fr;
    gap: 60px;
  }

  /**
   * ASIDE 
   */

  .aside {
    display: block;
    align-self: stretch;
  }

  .aside .h2 {
    color: var(--foreground-secondary);
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.3;
  }

  .aside .wrapper {
    background: var(--background-primary);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 5px hsla(0, 0%, 0%, 0.05);
  }

  .topics {
    margin-bottom: 3rem;
  }

  .topic-btn {
    display: flex;
    align-items: stretch;
    background: var(--background-primary);
    border-radius: 10px;
    box-shadow: 0 5px 5px hsla(0, 0%, 0%, 0.05);
    overflow: hidden;
  }

  .topic-btn:not(:last-child) {
    margin-bottom: 1rem;
  }

  .topic-btn .icon-box {
    font-size: 22px;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--action-primary);
    color: var(--foreground-secondary);
  }

  .topic-btn:hover .icon-box {
    background: var(--accent);
    color: var(--white);
  }

  .topic-btn ion-icon {
    --ionicon-stroke-width: 40px;
  }

  .topic-btn p {
    padding: 15px;
    color: var(--foreground-secondary);
    font-weight: 700;
  }

  .tags {
    margin-bottom: 3rem;
  }

  .tags .wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem;
  }

  .tags .hashtag {
    background: var(--action-primary);
    color: var(--foreground-secondary);
    padding: 5px 10px;
    font-size: var(--fs-5);
    font-weight: 700;
    border-radius: 5px;
  }

  .tags .hashtag:hover {
    background: var(--foreground-secondary);
    color: var(--action-primary);
  }

  .contact {
    margin-bottom: 3rem;
  }

  .contact p {
    color: var(--foreground-secondary);
    margin-bottom: 1rem;
  }

  .social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .social-link .icon-box {
    width: 45px;
    height: 45px;
    background: var(--action-secondary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
  }

  .social-link .discord {
    color: hsl(235, 86%, 65%);
  }

  .social-link .twitter {
    color: hsl(203, 89%, 53%);
  }

  .social-link .facebook {
    color: hsl(220, 46%, 48%);
  }

  .social-link .icon-box:hover {
    background: var(--accent);
    color: var(--white);
  }

  .newsletter {
    position: sticky;
    top: 3rem;
    margin-bottom: 98px;
  }

  .newsletter p {
    color: var(--foreground-secondary);
    margin-bottom: 1rem;
  }

  .newsletter input {
    border: none;
    background: var(--action-primary);
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    font: inherit;
    color: var(--foreground-secondary);
    border-radius: 5px;
    margin-bottom: 1rem;
  }

  .newsletter input::placeholder {
    color: inherit;
  }

  .newsletter input:focus {
    outline: 2px solid;
    outline-offset: 0;
  }

  .newsletter .btn-primary {
    margin-inline: auto;
    margin: auto; /* fallback for margin-inline */
  }

  /**
   * FOOTER 
   */

  .footer-title {
    font-size: 1.125rem;
  }

  .footer-link {
    margin-bottom: 0.3rem;
  }
}
