:root {
  --color-text: #1f2421ff;
  --color-primary: #216869ff;
  --color-secondary: #49a078ff;
  --color-muted: #9cc5a1ff;
  --color-white: #fff;
  --color-light: #dce1deff;
  --left-sidebar-width: 220px;
  --right-sidebar-width: 300px;
}

body {
  margin: 0;
  font: 14px "Montserrat", Helvetica, Arial, sans-serif;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

a {
  color: var(--color-secondary);
}

/* incognito */
/* img, svg, video {
  filter: blur(25px) grayscale(100%);
  pointer-events: none;
} */

/* UTILITY */
.text-muted {
  color: var(--color-secondary);
}

/* FORMS */
.form-group {
  display: flex;
  gap: 10px;
}

.form-group--email,
.form-group--username {
  flex-direction: column;
  gap: 0;
}

#form-group--gender {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}

.form-group > input {
  flex-grow: 1;
}

input {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin-top: 10px;
  padding: 15px;
}

::placeholder {
  color: #999;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #999;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #999;
}

.btn {
  border-radius: 5px;
  cursor: pointer;
}

.btn > a {
  text-decoration: none;
  color: #fff;
}

/* LANDING PAGE */
.landing-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100svh;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .landing-page {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
}
/* .landing-page {
  margin: 0 auto;
  display: flex;
  flex-grow: 1;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100vh;
} */

/* LOGO */
/* Mobile */

.logo-container {
  display: flex;
  flex-direction: column;    
  justify-content: center;
  width: 50%;
}


@media (min-width: 768px) {
  .logo-container {
    margin-right: 60px; /* Add margin between logo and login */
  }
}
  
/* @media only screen and (max-width: 700px) {
  .logo-container {
    display: none;
  }
} */

h1.logo {
  margin-top: -60px;
  color:var(--color-secondary);
  font-size: 4vw;
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 500;
}

h2.logo-subtext {
  width: 85%;
  font-weight: 400;
  font-size: clamp(16px, 2vw, 24px); /* Also constrain subtext size */
}

/* LOGIN */
.login-container {
  width: 396px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgb(0 0 0 / 10%),
    0 8px 16px rgb(0 0 0 / 10%);
  border: 1px solid #ddd;
  border-radius: 10px;
  text-align: center;
  padding: 10px 0;
}

.login-input {
  width: 90%;
  font-size: 1rem;
}

.btn {
  font-size: 1rem;
}

.login-btn {
  background-color: var(--color-primary);
  color: #fff;
  width: 90%;
}

.login-bottom {
  display: inline-block;
  margin: 20px 0;
}

.login-bottom > * {
  width: 100%;
}

.login-divider {
  width: 90%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.login_new-account {
  display: flex;
  justify-content: center;
}

.login_new-account-btn {
  font-size: 1rem;
  padding: 10px;
  margin: 20px 0 10px 0;
  min-width: 150px;
  width: 50%;
  background-color:var(--color-secondary);
}

/* CREATE ACCOUNT */
/* Mobile */
.create-account {
  height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

@media (min-width: 768px) {
  .create-account {
    min-width: 600px;
  }
}

.color-choice-container {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}

.color-choice {
  width: 60px;
  height: 60px;
  border: 1px solid gray;
  border-radius: 8px;
}

.gradient-0 {
  background: linear-gradient(to bottom, #32006e, #ff0aff);
}

.gradient-1 {
  background: linear-gradient(to bottom, #69e0cd, #5e0eab);
}

.gradient-2 {
  background: linear-gradient(to bottom, #08ccfd, #660bec);
}

.gradient-3 {
  background: linear-gradient(to bottom, #2ca4c7, #dbded1);
}

.gradient-4 {
  background: linear-gradient(to bottom, #f16328, #ffbf35);
}

.gradient-5 {
  background: linear-gradient(to bottom, #a46d5b, #f36670);
}

.gradient-6 {
  background: linear-gradient(to bottom, #ed0025, #fc62bc);
}

.gradient-7 {
  background: linear-gradient(to bottom, #85cdde, #51f95e);
}

/* CONTENT */
.content {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 920px; /* 280px * 3 + 20px * 2 + 40px padding */
  width: 100%;
  padding: 0 20px;
}

/* GREETING */
.greeting {
  width: 600px;
  max-width: 100%;
  display: block;
  margin: 10px auto;
}

/* CREATE POST */
.create-post {
  margin: 20px auto;
  width: 600px;
  max-width: 100%;
}

.create-post input {
  word-wrap: break-word;
  word-break: break-all;
}

/* .post-input:focus {
  height: 490px;
  transition: height 5s;
  background: linear-gradient(to bottom, #d76214, #660bec);
  background: linear-gradient(to bottom, #2ca4c7, #dbded1);
  background: linear-gradient(to bottom, #f16328, #920b5b);
  background: linear-gradient(to bottom, #a46d5b, #f36670);
  background: linear-gradient(to bottom, #ed0025, #70daca);
  background: linear-gradient(to bottom, #85cdde, #51f95e);
  color: white;
  font-size: xx-large;
  text-align: center; 
  outline: none;
  border: none;
} */

/* .post-input:focus::placeholder {
  color: transparent;
} */

.post-input:focus {
  border-color: var(--color-primary);
}

/* POST FEED */

/* .post-content {
  display: flex;
  justify-content: center;
  align-items: center;
} */

.post-content {
  display: flex;
  flex-direction: column;
  gap: 8px;           /* space between text and image */
  align-items: stretch;
  overflow: visible;
  padding: 0;
}

/* IMAGE VIEW */
.post[data-content-type="image"] .post-content {
  width: 100%;
}

/* .post-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
} */

.post-image {
  display: block;
  width: 100%;       
  height: auto;      
  object-fit: cover;  
  margin-bottom: 20px;
}

/* TEXT VIEW */
.post[data-content-type="text"] {
  grid-column: 1 / -1;
}

.post[data-content-type="text"] .post-content {
  background: white;
  color: #000;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
}

/* Mobile first */
.post {
  display: flex;
  flex-direction: column;
  width:100%;
}

.post {
  /* max-width: calc(100vw - 40px); */
  height: auto;
  border: 1px solid rgba(0, 0, 0, 0.1);
  justify-self: center;
  border-radius: 8px;
  overflow: hidden;
  padding: 20px 20px 5px 20px;
}

/* Base post styles */
@media (min-width: 1150px) {
  .post {
    width: 600px;
    max-width: calc(100vw - 40px);
  }
}

/* .post-message {
  flex: 1;
  align-self: center;
} */

.post-message {
  margin: 20px 0px 10px 50px;
  white-space: pre-wrap;   /* preserve line breaks */
  word-break: break-word;  /* avoid overflow on long words/links */
}

.posts-container {
  margin: 20px auto 0;
  width: 100%;
  max-width: 880px; /* 280px * 3 + 20px * 2 */
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 20px;
  row-gap: 8px;
  justify-content: center;
}

.post-header, .comment-header {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  margin-bottom: 8px;
}

.comment {
  margin-top: 12px;
}

.post-icon {
  border-radius: 20px; /* 50% of 40px - more precise than percentage */
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-right: 12px;
  overflow: hidden;
  display: flex;
  transform: translateZ(0); /* Force GPU acceleration */
  -webkit-backface-visibility: hidden; /* Improve rendering on webkit */
  backface-visibility: hidden;
  will-change: transform; /* Optimize for animations/transforms */
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1); /* Subtle shadow smooths jagged edges */
}

.post-icon img,
.post-icon svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  shape-rendering: geometricPrecision; /* Better SVG rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.post-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; /* Remove bottom gap from inline image */
}

.post-icon a {
  display: flex;
  width: 100%;
  height: 100%;
  line-height: 0; /* Remove extra spacing from inline elements */
}

.post-author, .comment-author {
  display: flex;
  flex-direction: column;
}

.username {
  font-weight: 600;
  text-decoration: none;
}

.major {
  font-size: 0.9em;
}

.timestamp {
  font-size: 1em;
  margin-left: auto;
}

/* APP BAR */
.app-bar {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between; /* keep left at start and right at end */
  height: 56px;
  background-color: var(--color-light);
  box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.1);
  padding-right: 16px;
  padding-left: 16px;
  z-index: 9999;
}

.app-bar--left,
.app-bar--right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.app-bar--center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1000;
}

.app-bar--center a {
  pointer-events: auto;
}

.app-bar--center img {
  max-width: 50px;
}

.controls {
  display: flex;
  gap: 8px;
}

.control-item {
  border-radius: 100%;
  width: 40px;
  height: 40px;
  background-color: #e4e6eb;
}

.control-item:hover {
  background-color: #d1d3d5;
}

.logo-icon {
  border-radius: 100%;
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  /* background: linear-gradient(45deg, rgba(84, 53, 156, 1) 50%, rgba(181, 149, 255, 1) 100%); */
}

.logo-icon a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  margin: 0px;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 2.5em;
  font-weight: 600;
  position: relative;
  top: 3px;
}

.view-toggle {
  display: flex;
  gap: 12px;
  align-items: center;
}

.view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 8px;
  transition: background-color 0.2s;
  text-decoration: none;
}

.view-btn img {
  width: 24px;
  height: 24px;
  display: block;
}

.view-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.view-btn.active {
  background-color: rgba(84, 53, 156, 0.1);
}

.profile {
  display: flex;
  align-items: center;
  text-align: center;
  cursor: pointer; 
}

.profile > span {
  flex: 1;
  justify-self: center;
  font-size: 1.25em;
}

.user-menu {
  width: 400px;
  /* height: 112px; */
  position: fixed;
  top: 56px;
  right: 16px;
  display: none;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-bottom: -168px;
  /* box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); */
}

.user-menu.visible {
  display: block;
}

.user-menu > ul {
  padding: 0;
  margin: 0;
}

.user-menu li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  margin: 0px;
  display: block;
  width: 100%;
  height: 100%;
  padding: 1.5em;
}

.user-menu > ul > li {
  list-style: none;
}

.user-menu > ul > li:hover {
  background-color: rgba(0, 0, 0, 0.025);
}

.hidden {
  display: none;
}

.login a {
  background-color: var(--color-white);
  color: var(--color-secondary);
  border-radius: 15px;
  padding: 15px;
  font-size: 1.1rem;
  text-decoration: none;
}

.signup a {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-radius: 15px;
  padding: 15px;
  font-size: 1.1rem;
  text-decoration: none;
}

/* POST ACTIONS */
.post-actions {
  display: flex;
  gap: 12px;
  padding: 2px 0px 12px 50px;
  /* padding-top: 2px; */
  /* padding-bottom: 12px; */
}

.like-btn, .comment-btn, .nav-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 8px;
  border-radius: 8px;
  transition: background-color 0.2s;
  font-size: 14px;
}

.nav-btn > a,
.tag-filter-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 16px;
  text-decoration: none;
  color: inherit;
  font-size: medium;
}

.tag-filter-btn {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background: none;
  cursor: pointer;
  text-align: left;
}

.nav-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.nav-btn {
  width: 100%;
  padding: 0px;
}

.like-btn:hover, .comment-btn:hover, .nav-btn:hover, .nav-btn.active,
.tag-filter-btn:hover, .tag-filter-btn.active {
  background-color: rgba(0, 0, 0, 0.05);
}

.like-btn.liked .like-icon {
  color: #e0245e;
}

.like-icon, .comment-icon {
  /* font-size: 18px; */
  color: #657786;
}

.comment-icon {
  transform: translateY(3px);
}

.like-icon, .comment-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
}

.like-btn.liked .like-icon svg {
  fill: #e0245e;
  stroke: #e0245e;
}

.like-btn:hover .like-icon svg {
  stroke: #e0245e;
}

.like-count {
  color: #657786;
  font-weight: 500;
}

/* COMMENT INPUT */
.comment-input-container {
  padding: 0px;
  /* border-top: 1px solid rgba(0, 0, 0, 0.1); */
}

.comment-input-container.hidden {
  display: none;
}

.comment-form {
  display: flex;
  flex-direction: column; /* Stack vertically instead of horizontal */
  gap: 10px;
}

.post-input, .comment-input {
  width: 100%; /* Full width */
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 15px;
  font-size: 14px;
  outline: none;
  margin-top: 0;
}

.comment-submit-btn {
  align-self: flex-end;
  padding: 8px 16px; /* Reduced from 10px 20px */
  width: auto; /* Only as wide as content needs */
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.post-input:focus, .comment-input:focus {
  border-color: #54359C;
}

.comment-submit-btn:hover {
  background-color: #432b7d;
}

.comment-submit-btn:active {
  transform: scale(0.98);
}

/* COMMENTS LIST */
.comments-list {
  padding-bottom: 12px;
}

.comment-text {
  width: 600px; /* Fixed width, not max-width */
  max-width: calc(100vw - 40px); /* But don't overflow on mobile */
  height: auto;
  background: rgba(0, 0, 0, 0.025);
  color: #000;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.comment-profile {
  border-radius: 50%;
  width: 32px;  /* Slightly smaller than post icons */
  height: 32px;
  flex-shrink: 0;
  margin-right: 8px;
  overflow: hidden;
  display: flex;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

.comment-profile a {
  display: flex;
  width: 100%;
  height: 100%;
}

.comment-profile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.comment-header {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

/* TAG SELECTOR */

.tag-selector {
  display: flex;
  gap: 8px;
  margin: 8px 0;
}

.tag-selector.hidden {
  display: none;
}

.tag-btn {
  padding: 6px 16px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  background: white;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
}

.tag-btn:hover {
  background: rgba(84, 53, 156, 0.1);
}

.tag-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-muted);
}

/* Mobile View */
#feed-content {
  display: block;
}

@media (min-width: 1150px) {
  .app-shell, #feed-content {
    display: grid;
    grid-template-columns: var(--left-sidebar-width) minmax(0, 700px) var(--right-sidebar-width);
    width: 100%;
    max-width: none;
    margin: 0 auto;
    min-height: 100vh;
    justify-content: center;
  }
}



.app-shell--guest {
  grid-template-columns: minmax(0, 700px);
}

/* Small phones */
@media (max-width: 1150px) {
  .left-sidebar, .right-sidebar {
    display: none;
  }

  .sidebar-tags {
    display: none !important;
    visibility: hidden;
  }

  .app-shell {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .main-content {
    grid-column: 1;
  }
}

.sidebar-links, .sidebar-tags {
  width: 100%;
  padding: 0 0 20px;
  /* margin-top: 20px; */
  /* margin-bottom: 20px; */
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  position: sticky;
  top: 76px;
}

.sidebar-tags {
  padding-bottom: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

.main-content {
  grid-column: 2;
  min-width: 0;
}

.left-sidebar {
  grid-column: 1;
  min-width: 0;
}

.right-sidebar {
  grid-column: 3;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  align-self: flex-start;
  position: sticky;
  top: 76px;
}

.sidebar-tags {
  position: static;
  top: auto;
}

.app-shell--guest .main-content {
  grid-column: 1;
}

/* For profile and other pages, use a single column or different layout */
#profile-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 32px 16px;
  display: block;
}

.sidebar-header {
  padding: 16px;
  font-size: x-large;
  font-weight: 500;
  color:var(--color-text);
  letter-spacing: 0.5px;
}

.tag-filters {
  display: flex;
  flex-direction: column;
}

.btn-inactive,
.btn-inactive * {
  color: #999;
}

.btn-inactive .nav-icon {
  opacity: 0.4;
}

.btn-inactive > a {
  cursor: not-allowed;
}

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

.post-form-actions {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  /* gap: 10px; */
  margin-top: 10px;
}

.image-upload-btn, .link-upload-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--color-primary);
  cursor: pointer;
}

.image-upload-row {
  display: flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
}

.image-upload-callout {
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 600;
}

.image-upload-btn:hover, .link-upload-btn:hover,
.image-upload-btn:focus-visible, .link-upload-btn:focus-visible {
  background-color: rgba(33, 104, 105, 0.1);
}

.image-upload-btn img, .link-upload-btn img {
  width: 22px;
  height: 22px;
  display: block;
}

.post-form-actions .post-btn {
  width: 100%;
}

.image-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.image-preview {
  position: relative;
  margin-top: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.image-preview-image {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  background: var(--color-light);
}

.image-preview-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 6px 10px;
  border: 0;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--color-white);
  cursor: pointer;
}

.upload-results {
  min-height: 1.2em;
  margin: 8px 0 0;
  color: var(--color-text);
  text-align: right;
}

/* COURSE DISCOVERY */
#courses-content .main-content,
#course-hub-content .main-content {
  padding: 24px;
}

.courses-header,
.course-hub-header {
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
}

.courses-header h1,
.course-hub-header h1 {
  margin: 0 0 4px;
}

.courses-subheader {
  color: var(--color-secondary);
  margin: 0;
}

.courses-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.course-card {
  display: block;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s, box-shadow 0.2s;
}

.course-card:hover {
  background-color: rgba(0, 0, 0, 0.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.course-code {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-primary);
}

.course-title {
  font-size: 1rem;
  margin-top: 4px;
}

.course-department {
  font-size: 0.9rem;
  color: var(--color-secondary);
  margin-top: 4px;
}

/* COURSE HUB */
.course-hub-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.course-hub-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.course-hub-department {
  font-size: 0.9rem;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.course-hub-code {
  margin: 0;
  font-size: 1.6rem;
}

.course-hub-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
}

.course-follow-btn {
  padding: 10px 24px;
  border: 0;
  border-radius: 20px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.course-follow-btn:hover {
  background-color: var(--color-secondary);
}

.course-follow-btn[data-subscribed="true"] {
  background-color: var(--color-light);
  color: var(--color-text);
}

.course-empty {
  text-align: center;
  color: var(--color-secondary);
  padding: 40px 0;
}