body {
  background: var(--bg-primary, #f7fafd);
  font-family: "Vazirmatn", "PeydaFaNum", Tahoma, Arial, sans-serif;
  color: #222;
  margin: 0;
  padding: 0;
  direction: rtl;
  text-align: right;
  padding-top: 70px;
}

/* Breadcrumb Navigation Styles */
.breadcrumb-nav {
  background: rgba(0, 188, 212, 0.05);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 188, 212, 0.1);
  margin-top: 70px;
}

.breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.breadcrumb {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-right: 0.5rem;
  color: #00bcd4;
  font-weight: bold;
}

.breadcrumb a {
  color: #00bcd4;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.breadcrumb span {
  color: #333;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.article-main {
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 1.2rem 2.5rem 1.2rem;
  box-sizing: border-box;
  text-align: right;
}

.article-header-content {
  margin-top: 2.5rem;
  margin-bottom: 2.2rem;
  text-align: right;
}

.article-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #008ba3;
  margin-bottom: 1.2rem;
  line-height: 1.3;
  font-family: "Orbitron", "Vazirmatn", Tahoma, Arial, sans-serif;
  text-align: right;
}

.article-meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-size: 1rem;
  color: #666;
  text-align: right;
}

.article-date,
.article-views {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #2196f3;
  font-weight: 500;
  background: rgba(33, 150, 243, 0.08);
  padding: 0.4rem 1rem;
  border-radius: 20px;
}
.article-views {
  color: #888;
  background: rgba(136, 136, 136, 0.08);
}
.article-featured {
  background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
  color: #fff;
  padding: 0.4rem 1.1rem;
  border-radius: 20px;
  font-size: 0.92rem;
  font-weight: 600;
  margin-right: 0.5rem;
}

.article-image {
  margin: 0 auto 2.2rem auto;
  max-width: 1200px;
  max-height: 700px;
  border-radius: 18px;
  overflow: hidden;
}
.article-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(213, 187, 187, 0.1);
  background: #e0e0e0;
  transition: transform 0.3s;
}
.article-image img:hover {
  transform: scale(1.025);
}

.article-summary {
  margin: 0 auto 2.2rem auto;
  max-width: 1200px;
  background: linear-gradient(90deg, #e3f2fd 0%, #f3e5f5 100%);
  border-right: 4px solid var(--primary-color, #00bcd4);
  border-radius: 12px;
  padding: 1.3rem 1.5rem;
  font-size: 1.13rem;
  color: #444;
  font-weight: 500;
  box-sizing: border-box;
  text-align: right;
}

.article-body {
  font-size: 1.08rem;
  line-height: 2.1;
  color: #333;
  margin-bottom: 2.5rem;
  word-break: break-word;
  text-align: right;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(248, 250, 252, 0.9) 100%
  );
  border-radius: 16px;
  padding: 2rem 2.5rem;
  border: 1px solid rgba(0, 188, 212, 0.1);
  box-shadow: 0 2px 20px rgba(0, 188, 212, 0.05);
  position: relative;
  overflow: hidden;
}

.article-body::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    #00bcd4 0%,
    var(--primary-color) 50%,
    #00bcd4 100%
  );
  border-radius: 16px 16px 0 0;
}

.article-body p {
  margin-bottom: 1.3rem;
  text-align: right;
  position: relative;
  padding-right: 1rem;
}

.article-body p::before {
  content: "•";
  position: absolute;
  right: 0;
  top: 0;
  color: #00bcd4;
  font-weight: bold;
  font-size: 1.2em;
}

.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6 {
  color: var(--primary-color, #00bcd4);
  margin: 2.2rem 0 1.2rem 0;
  font-weight: 600;
  line-height: 1.4;
  text-align: right;
  position: relative;
  padding-right: 1.5rem;
  padding-bottom: 0.5rem;
}

.article-body h1::before,
.article-body h2::before,
.article-body h3::before,
.article-body h4::before,
.article-body h5::before,
.article-body h6::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #00bcd4 0%, var(--primary-color) 100%);
  border-radius: 1px;
}

.article-body h1 {
  font-size: 1.7rem;
  background: linear-gradient(135deg, #00bcd4 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.article-body h2 {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #00bcd4 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.article-body h3 {
  font-size: 1.3rem;
  background: linear-gradient(135deg, #00bcd4 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.article-body h4 {
  font-size: 1.15rem;
}

.article-body h5 {
  font-size: 1.08rem;
}

.article-body h6 {
  font-size: 1.02rem;
}

.article-body ul,
.article-body ol {
  margin: 1.2rem 0;
  padding-right: 1.7rem;
  text-align: right;
  background: rgba(0, 188, 212, 0.03);
  border-radius: 8px;
  padding: 1rem 1.5rem 1rem 1rem;
  border-right: 3px solid rgba(0, 188, 212, 0.2);
}

.article-body li {
  margin-bottom: 0.6rem;
  text-align: right;
  position: relative;
  padding-right: 0.5rem;
}

.article-body ul li::before {
  content: "▶";
  position: absolute;
  right: -1rem;
  top: 0;
  color: #00bcd4;
  font-size: 0.8em;
}

.article-body ol {
  counter-reset: item;
}

.article-body ol li {
  counter-increment: item;
  position: relative;
  padding-right: 1.5rem;
}

.article-body ol li::before {
  content: counter(item);
  position: absolute;
  right: -1.5rem;
  top: 0;
  background: linear-gradient(135deg, #00bcd4 0%, var(--primary-color) 100%);
  color: white;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7em;
  font-weight: bold;
}

.article-body blockquote {
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  border-right: 4px solid var(--primary-color, #00bcd4);
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
  border-radius: 12px;
  font-style: italic;
  color: #555;
  text-align: right;
  position: relative;
  box-shadow: 0 2px 15px rgba(0, 188, 212, 0.08);
}

.article-body blockquote::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  right: 1rem;
  font-size: 3rem;
  color: #00bcd4;
  font-family: serif;
  opacity: 0.3;
}

.article-body code {
  background: linear-gradient(135deg, #f1f3f4 0%, #e8f4f8 100%);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-family: "Courier New", monospace;
  font-size: 0.98em;
  color: #d32f2f;
  border: 1px solid rgba(0, 188, 212, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.article-body pre {
  background: linear-gradient(135deg, #263238 0%, #37474f 100%);
  color: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  overflow-x: auto;
  margin: 1rem 0;
  text-align: left;
  border: 1px solid rgba(0, 188, 212, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: relative;
}

.article-body pre::before {
  content: "Code";
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  background: rgba(0, 188, 212, 0.8);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: bold;
}

.article-body pre code {
  background: none;
  color: inherit;
  padding: 0;
  border: none;
  box-shadow: none;
}

.article-sections {
  margin-top: 2.5rem;
  text-align: right;
}

.article-section {
  margin-bottom: 2.2rem;
  padding: 1.5rem;
  text-align: right;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(248, 250, 252, 0.95) 100%
  );
  border: 2px solid rgba(0, 188, 212, 0.15);
  border-radius: 16px;
  box-shadow: 0 3px 25px rgba(0, 188, 212, 0.08);
  position: relative;
  overflow: hidden;
}

.article-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    #00bcd4 0%,
    var(--primary-color) 50%,
    #00bcd4 100%
  );
  border-radius: 16px 16px 0 0;
}

.section-heading {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0097a7;
  margin-bottom: 1rem;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid #e0e0e0;
  text-align: right;
}

.section-heading::before {
  content: "📋";
  position: absolute;
  right: -1.5rem;
  top: 0;
  font-size: 1.2em;
}

.section-content {
  font-size: 1.08rem;
  line-height: 2.1;
  color: #333;
  text-align: right;
  padding-right: 0.5rem;
}

.section-content p {
  margin-bottom: 1.1rem;
  text-align: right;
  position: relative;
  padding-right: 1rem;
}

.section-content p::before {
  content: "•";
  position: absolute;
  right: 0;
  top: 0;
  color: #00bcd4;
  font-weight: bold;
  font-size: 1.1em;
}

.article-footer {
  margin: 3.5rem auto 0 auto;
  text-align: center;
  padding-bottom: 2.5rem;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #00bcd4 100%);
  color: #222;
  text-decoration: none;
  padding: 0.9rem 2.1rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.08rem;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 188, 212, 0.13);
  border: none;
  cursor: pointer;
}
.back-link:hover {
  background: linear-gradient(135deg, #00bcd4 0%, var(--primary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 188, 212, 0.18);
  color: #222;
}
.back-link:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 900px) {
  .article-main {
    max-width: 99vw;
    padding: 2rem 1rem 2.5rem 1rem;
  }
  .article-image,
  .article-summary {
    max-width: 99vw;
  }
  .article-title {
    font-size: 1.8rem;
    margin-top: 1rem;
  }
  .article-meta {
    gap: 0.8rem;
  }
}

@media (max-width: 768px) {
  .article-main {
    padding: 1.8rem 0.8rem 2.2rem 0.8rem;
  }
  .article-title {
    font-size: 1.6rem;
    margin-top: 1.5rem;
  }
  .article-meta {
    gap: 0.6rem;
    font-size: 0.95rem;
  }
  .article-image {
    margin-bottom: 1.8rem;
  }
  .article-summary {
    padding: 1.1rem 1.2rem;
    font-size: 1.05rem;
    margin-bottom: 1.8rem;
  }
  .article-body {
    font-size: 1.02rem;
    line-height: 2;
    padding: 1.5rem 1.8rem;
    border-radius: 12px;
  }
  .article-section {
    padding: 1.2rem;
    border-radius: 12px;
  }
}

@media (max-width: 600px) {
  body {
    padding-top: 56px;
  }
  .breadcrumb-nav {
    margin-top: 56px;
  }
  .breadcrumb {
    font-size: 0.8rem;
    gap: 0.3rem;
  }
  .breadcrumb li:not(:last-child)::after {
    margin-right: 0.3rem;
  }
  .breadcrumb-container {
    padding: 0 0.5rem;
  }
  .article-main {
    padding: 1.5rem 0.5rem 2rem 0.5rem;
  }
  .article-header-content {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .article-title {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
  }
  .article-meta {
    font-size: 0.9rem;
    gap: 0.5rem;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
  }
  .article-date,
  .article-views,
  .article-featured {
    padding: 0.3rem 0.8rem;
    font-size: 0.85rem;
  }
  .article-image {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    max-width: 100vw;
  }
  .article-image img {
    border-radius: 12px;
  }
  .article-summary {
    padding: 1rem 1rem;
    font-size: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    max-width: 100vw;
    line-height: 1.8;
  }
  .article-body {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.9;
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
  }
  .article-body p {
    margin-bottom: 1.2rem;
    padding-right: 0.8rem;
  }
  .article-body p::before {
    font-size: 1.1em;
  }
  .article-body h1 {
    font-size: 1.2rem;
    margin: 1.8rem 0 1rem 0;
    padding-right: 1.2rem;
  }
  .article-body h2 {
    font-size: 1.15rem;
    margin: 1.6rem 0 0.9rem 0;
    padding-right: 1.2rem;
  }
  .article-body h3 {
    font-size: 1.1rem;
    margin: 1.4rem 0 0.8rem 0;
    padding-right: 1.2rem;
  }
  .article-body h4,
  .article-body h5,
  .article-body h6 {
    font-size: 1.05rem;
    margin: 1.2rem 0 0.7rem 0;
    padding-right: 1.2rem;
  }
  .article-body ul,
  .article-body ol {
    margin: 1rem 0;
    padding: 0.8rem 1.2rem 0.8rem 0.8rem;
    border-radius: 6px;
  }
  .article-body li {
    margin-bottom: 0.5rem;
    padding-right: 0.4rem;
  }
  .article-body ul li::before {
    right: -0.8rem;
    font-size: 0.7em;
  }
  .article-body ol li {
    padding-right: 1.2rem;
  }
  .article-body ol li::before {
    right: -1.2rem;
    width: 1rem;
    height: 1rem;
    font-size: 0.6em;
  }
  .article-body blockquote {
    padding: 1.2rem 1.5rem;
    margin: 1.2rem 0;
    border-radius: 8px;
    font-size: 0.95rem;
  }
  .article-body blockquote::before {
    font-size: 2.5rem;
    right: 0.8rem;
  }
  .article-body code {
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.95em;
  }
  .article-body pre {
    padding: 1.2rem;
    border-radius: 8px;
    margin: 1rem 0;
  }
  .article-body pre::before {
    top: 0.3rem;
    right: 0.8rem;
    padding: 0.15rem 0.5rem;
    font-size: 0.65rem;
  }
  .article-section {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
  }
  .section-heading {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.3rem;
    padding-right: 0.8rem;
  }
  .section-heading::before {
    right: -1.2rem;
    font-size: 1.1em;
  }
  .section-content {
    font-size: 1rem;
    line-height: 1.9;
    padding-right: 0.3rem;
  }
  .section-content p {
    margin-bottom: 1rem;
    padding-right: 0.8rem;
  }
  .section-content p::before {
    font-size: 1em;
  }
  .article-footer {
    margin: 2.5rem auto 0 auto;
    padding-bottom: 1.5rem;
  }
  .back-link {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .article-main {
    padding: 1.2rem 0.3rem 1.8rem 0.3rem;
  }
  .article-header-content {
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .article-title {
    font-size: 1.25rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    line-height: 1.3;
  }
  .article-meta {
    font-size: 0.85rem;
    gap: 0.4rem;
  }
  .article-date,
  .article-views,
  .article-featured {
    padding: 0.25rem 0.6rem;
    font-size: 0.8rem;
  }
  .article-image {
    margin-bottom: 1.2rem;
    border-radius: 10px;
  }
  .article-image img {
    border-radius: 10px;
  }
  .article-summary {
    padding: 0.8rem 0.7rem;
    font-size: 0.95rem;
    border-radius: 8px;
    margin-bottom: 1.2rem;
    line-height: 1.7;
  }
  .article-body {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
    padding: 1rem 1.2rem;
    border-radius: 8px;
  }
  .article-body p {
    margin-bottom: 1rem;
    padding-right: 0.7rem;
  }
  .article-body p::before {
    font-size: 1em;
  }
  .article-body h1 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.8rem 0;
    padding-right: 1rem;
  }
  .article-body h2 {
    font-size: 1.05rem;
    margin: 1.3rem 0 0.7rem 0;
    padding-right: 1rem;
  }
  .article-body h3 {
    font-size: 1.02rem;
    margin: 1.1rem 0 0.6rem 0;
    padding-right: 1rem;
  }
  .article-body h4,
  .article-body h5,
  .article-body h6 {
    font-size: 1rem;
    margin: 1rem 0 0.5rem 0;
    padding-right: 1rem;
  }
  .article-body ul,
  .article-body ol {
    margin: 0.8rem 0;
    padding: 0.6rem 1rem 0.6rem 0.6rem;
    border-radius: 6px;
  }
  .article-body li {
    margin-bottom: 0.4rem;
    padding-right: 0.3rem;
  }
  .article-body ul li::before {
    right: -0.7rem;
    font-size: 0.6em;
  }
  .article-body ol li {
    padding-right: 1rem;
  }
  .article-body ol li::before {
    right: -1rem;
    width: 0.9rem;
    height: 0.9rem;
    font-size: 0.55em;
  }
  .article-body blockquote {
    padding: 1rem 1.2rem;
    margin: 1rem 0;
    border-radius: 6px;
    font-size: 0.9rem;
  }
  .article-body blockquote::before {
    font-size: 2rem;
    right: 0.6rem;
  }
  .article-body code {
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    font-size: 0.9em;
  }
  .article-body pre {
    padding: 1rem;
    border-radius: 6px;
    margin: 0.8rem 0;
  }
  .article-body pre::before {
    top: 0.2rem;
    right: 0.6rem;
    padding: 0.1rem 0.4rem;
    font-size: 0.6rem;
  }
  .article-section {
    margin-bottom: 1.2rem;
    padding: 0.8rem;
    border-radius: 8px;
  }
  .section-heading {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    padding-bottom: 0.2rem;
    padding-right: 0.6rem;
  }
  .section-heading::before {
    right: -1rem;
    font-size: 1em;
  }
  .section-content {
    font-size: 0.95rem;
    line-height: 1.8;
    padding-right: 0.2rem;
  }
  .section-content p {
    margin-bottom: 0.8rem;
    padding-right: 0.7rem;
  }
  .section-content p::before {
    font-size: 0.9em;
  }
  .article-footer {
    margin: 2rem auto 0 auto;
    padding-bottom: 1.2rem;
  }
  .back-link {
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
    border-radius: 18px;
  }
}

@media (max-width: 360px) {
  .article-main {
    padding: 1rem 0.2rem 1.5rem 0.2rem;
  }
  .article-title {
    font-size: 1.15rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
  }
  .article-meta {
    font-size: 0.8rem;
  }
  .article-date,
  .article-views,
  .article-featured {
    padding: 0.2rem 0.5rem;
    font-size: 0.75rem;
  }
  .article-summary {
    padding: 0.7rem 0.6rem;
    font-size: 0.9rem;
  }
  .article-body {
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
    border-radius: 6px;
  }
  .article-section {
    padding: 0.6rem;
    border-radius: 6px;
  }
  .back-link {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}

/* Selection color */
::selection {
  background: rgba(0, 188, 212, 0.13);
  color: #000;
}
::-moz-selection {
  background: rgba(0, 188, 212, 0.13);
  color: #000;
}

/* Remove any card, box, or shadow from main layout! */
.article-main,
.article-header-content,
.article-footer {
  background: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* Force right alignment for all text elements */
.article-main *,
.article-header-content *,
.article-body *,
.article-summary *,
.section-content * {
  text-align: right !important;
}

/* Keep images and pre tags left-aligned */
.article-image,
.article-image *,
.article-body pre,
.article-body pre * {
  text-align: left !important;
}

/* Keep footer centered */
.article-footer,
.article-footer * {
  text-align: center !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.breadcrumb-nav {
  background: rgba(0, 188, 212, 0.05);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 188, 212, 0.1);
}

.breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.breadcrumb {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-right: 0.5rem;
  color: #00bcd4;
  font-weight: bold;
}

.breadcrumb a {
  color: #00bcd4;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.breadcrumb span {
  color: #333;
}

@media (max-width: 600px) {
  .breadcrumb {
    font-size: 0.8rem;
    gap: 0.3rem;
  }

  .breadcrumb li:not(:last-child)::after {
    margin-right: 0.3rem;
  }
}
