.intro-text-medium a,
.intro-text-medium a:visited,
.intro-text-medium a:hover,
.intro-text-medium a:active {
    color: var(--color-black) !important;
}

.intro-text-medium {
    font-size: 1rem;
    font-family: "Tanker", sans-serif;
    /* font-weight: 700; */
    color: var(--color-black);
    letter-spacing: 0.04em;
}

.intro-text-small {
    font-family: "Amulya", sans-serif;
    font-style: italic;
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
}

.post-title-link {
    font-family: "Tanker", sans-serif;
    color: var(--color-black);
    /* Make text black */
    font-size: 1.2rem;
    /* Adjust as needed */
    text-decoration: none;
    letter-spacing: 0.05em;
}

/* Add styles for Next/Previous section links */
/* Single post page navigation styles */
.single-post-navigation .post-item .title-text {
    color: var(--color-gray-light);
    transition: color 0.15s ease-in-out;
}

.single-post-navigation .post-item:hover .title-text {
    color: var(--color-black);
}

/* Index page title styles - always black */
.index-page .post-item .title-text {
    color: var(--color-black);
}

.index-page .post-item:hover .title-text {
    color: var(--color-pure-black);
}

article h3 {
    max-width: 464px;
    margin-left: auto;
    margin-right: auto;

    font-family: "Tanker", serif;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 1.2rem;
    padding-bottom: 0.5rem;
}

.post-paragraph {
    line-height: 1.8;
    color: #3F3F4F;
    font-weight: 500;
}

.post-paragraph ul {
    max-width: 464px;
    margin-left: auto;
    margin-right: auto;
}

.post-paragraph p {
    margin-bottom: 1.6em;
    max-width: 464px;
    margin-left: auto;
    margin-right: auto;
}

.post-paragraph a,
.post-paragraph a:visited {
    color: #3F3F4F;
}

.post-paragraph a:hover {
    color: var(--color-pure-black);
}

.post-paragraph img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 24px;
}

.my-separator,
.separator,
.single-separator {
    display: flex;
    justify-content: center;
    /* horizontal centering */
    gap: 1.5rem;
    /* space between each SVG */
    margin: 2rem 0;
    transform: scale(0.4);
    /* 1.0 is default; 1.5 is 50% bigger, etc. */
    transform-origin: center;
}

.title-text {
    margin-top: 2px;
}

@media (max-width: 576px) {
    .title-text {
        margin-top: 1px;
    }
}

.my-separator img,
.separator svg {
    display: inline-block;
}

.post-title {
    position: relative;
    margin: 0;
    display: inline-block;
    text-decoration: none;
}

.chevron {
    color: #E67E22;
    opacity: 0;
    display: inline-block;
    transform: translateX(-2px);
    transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out;
    margin-left: 0.5rem;
    aspect-ratio: 1;
}

.post-item:hover .chevron {
    opacity: 1;
    transform: translateX(0);
}

.post-date {
    color: var(--color-gray-lighter) !important;    /* or whichever slight variation you like */
    font-family: "Tanker", sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.03em;
  }

  .arrow-container {
    /* The background box */
    flex-shrink: 0;
    aspect-ratio: 1;
    width: 1.6rem;
    height: 1.6rem;
    background-color: #ddd;   /* or whatever gray you like */
    border-radius: 8px;       /* rounded corners */
    position: relative;       /* for absolutely positioned arrows */
    overflow: hidden;         /* so the arrow going out of bounds is clipped */
    cursor: pointer;          /* optional if you want it to look clickable */
  }

  /* Shared arrow styles */
  .arrow {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.35s cubic-bezier(0.68, 0.55, 0.265, 1.30);
  }

  /* Arrow #1: starts in the middle at 50% opacity */
  .arrow1 {
    opacity: 0.5;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  /* Arrow #2: start off-screen above the box (translateY(-100%),
     or any negative offset so it's hidden at the top) */
  .arrow2 {
    transform: translate(-50%, -50%) translateY(200%);
  }

  /* HOVER STATES */
  .post-item:hover .arrow1 {
    /* arrow #1 slides down out of the box */
    transform: translate(-50%, -50%) translateY(-200%);

  }

  .post-item:hover .arrow2 {
    /* arrow #2 slides in from above to center */
    transform: translate(-50%, -50%) translateY(0);
    opacity: 1;
  }

#newsletterForm .anim-field {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgb(214, 214, 214);
  transition: background 0.3s ease, color 0.15s ease-in-out;
  width: 100%;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  font-family: "Tanker", sans-serif;
  text-transform: uppercase;
}

#newsletterForm .anim-field::placeholder {
  color: #6F6F6F;
  text-transform: uppercase;
}