/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --luvina-50: #ffffff;
  --luvina-100: #f4f4f5;
  --luvina-200: #e4e4e7;
  --luvina-300: #d4d4d8;
  --luvina-400: #a1a1aa;
  --luvina-500: #B15036;
  --luvina-600: #9a452e;
  --luvina-700: #3f3f46;
  --luvina-800: #27272a;
  --luvina-900: #000000;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--luvina-50);
  color: var(--luvina-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--luvina-200);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--luvina-500);
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.fade-in {
  animation: fadeIn 0.7s ease-in;
}

.slide-in {
  animation: slideIn 0.5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

/* Landing Page Styles */
.landing-page {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: white;
}

.landing-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 50%;
  background-color: rgba(244, 244, 245, 0.5);
  border-radius: 0 0 0 100%;
  z-index: 0;
  opacity: 0.5;
  filter: blur(60px);
  transform: translate(25%, -25%);
}

.landing-content {
  position: relative;
  z-index: 10;
  padding: 2rem;
  background-color: white;
  max-width: 32rem;
  width: 100%;
  text-align: center;
  margin: 0 1rem;
}

.landing-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.landing-logo img {
  height: 5rem;
  width: auto;
}

.landing-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: black;
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .landing-title {
    font-size: 2.5rem;
  }
}

.landing-divider {
  height: 4px;
  width: 3rem;
  background-color: var(--luvina-500);
  margin: 0 auto 2rem;
  border-radius: 9999px;
}

.landing-subtitle {
  color: #6b7280;
  margin-bottom: 2.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.language-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.language-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background-color: white;
  border: 1px solid var(--luvina-200);
  border-radius: 0.75rem;
  transition: all 0.3s;
  cursor: pointer;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.language-button:hover {
  border-color: var(--luvina-500);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.language-button-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.language-flag {
  width: 2rem;
  font-size: 1.25rem;
}

.language-name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #1f2937;
  font-size: 1.125rem;
  transition: color 0.3s;
}

.language-button:hover .language-name {
  color: var(--luvina-500);
}

.chevron-icon {
  color: var(--luvina-300);
  transition: all 0.3s;
  width: 20px;
  height: 20px;
}

.language-button:hover .chevron-icon {
  color: var(--luvina-500);
  transform: translateX(4px);
}

.back-to-site-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  margin-top: 1.5rem;
  background-color: white;
  border: 1px solid var(--luvina-200);
  border-radius: 0.75rem;
  transition: all 0.3s;
  cursor: pointer;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.back-to-site-button:hover {
  border-color: var(--luvina-500);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  background-color: var(--luvina-100);
}

.back-to-site-icon {
  width: 18px;
  height: 18px;
  color: var(--luvina-500);
  transition: transform 0.3s;
}

.back-to-site-button:hover .back-to-site-icon {
  transform: translateX(-4px);
}

.back-to-site-text {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--luvina-500);
  font-size: 1rem;
  transition: color 0.3s;
}

.back-to-site-button:hover .back-to-site-text {
  color: var(--luvina-600);
}

/* PDF Section */
.pdf-section {
  margin-top: 2rem;
  width: 100%;
}

.pdf-divider-text {
  text-align: center;
  color: var(--luvina-400);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.pdf-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pdf-button {
  width: 100%;
  height: 4rem;
  display: flex;
  align-items: center;
  padding: 0;
  background-color: white;
  border: 1px solid var(--luvina-200);
  border-radius: 0.75rem;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
}

.pdf-button::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4rem;
  background: transparent;
  z-index: 1;
}

.pdf-button::after {
  content: '';
  position: absolute;
  left: 4rem;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(177, 80, 54, 0.05), rgba(177, 80, 54, 0.15));
  transition: all 0.3s;
}

.pdf-button:hover {
  border-color: var(--luvina-500);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.pdf-button:hover::after {
  background: linear-gradient(to right, rgba(177, 80, 54, 0.15), rgba(177, 80, 54, 0.3));
}

.pdf-button-en::after {
  background: linear-gradient(to right, rgba(177, 80, 54, 0.05), rgba(177, 80, 54, 0.12));
}

.pdf-button-en:hover::after {
  background: linear-gradient(to right, rgba(177, 80, 54, 0.12), rgba(177, 80, 54, 0.25));
}

.pdf-button-tr::after {
  background: linear-gradient(to right, rgba(227, 10, 23, 0.1), rgba(177, 80, 54, 0.2));
}

.pdf-button-tr:hover::after {
  background: linear-gradient(to right, rgba(227, 10, 23, 0.2), rgba(177, 80, 54, 0.35));
}

.pdf-button-ru::after {
  background: linear-gradient(to right, rgba(0, 57, 166, 0.1), rgba(177, 80, 54, 0.2));
}

.pdf-button-ru:hover::after {
  background: linear-gradient(to right, rgba(0, 57, 166, 0.2), rgba(177, 80, 54, 0.35));
}

.pdf-flag {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background-color: transparent;
  border-radius: 0.75rem 0 0 0.75rem;
  position: relative;
  z-index: 2;
  transition: all 0.3s;
  line-height: 1;
}

.pdf-button:hover .pdf-flag {
  transform: scale(1.1);
}

.pdf-title {
  position: absolute;
  left: 4rem;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--luvina-800);
  z-index: 3;
  transition: color 0.3s;
  text-align: center;
}

.pdf-button:hover .pdf-title {
  color: var(--luvina-900);
}

.landing-footer {
  margin-top: 3rem;
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Documentation Layout Styles */
.doc-layout {
  display: flex;
  height: 100vh;
  background-color: white;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  color: black;
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  z-index: 40;
}

@media (min-width: 768px) {
  .mobile-overlay {
    display: none;
  }
}

/* Sidebar Styles */
.sidebar {
  position: fixed;
  z-index: 50;
  width: 20rem;
  height: 100%;
  background-color: white;
  border-right: 1px solid var(--luvina-200);
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .sidebar {
    position: relative;
    transform: translateX(0);
    box-shadow: none;
  }
}

.sidebar.open {
  transform: translateX(0);
}

.sidebar-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--luvina-100);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: white;
}

.sidebar-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-logo {
  height: 2rem;
  width: auto;
}

.sidebar-close-btn {
  display: none;
  padding: 0.5rem;
  color: #6b7280;
  background: none;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.sidebar-close-btn:hover {
  background-color: var(--luvina-100);
}

@media (min-width: 768px) {
  .sidebar-close-btn {
    display: none;
  }
}

.search-container {
  position: relative;
}

.search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--luvina-400);
  width: 1rem;
  height: 1rem;
  transition: color 0.2s;
}

.search-container:focus-within .search-icon {
  color: var(--luvina-500);
}

.search-input {
  width: 100%;
  padding-left: 2.25rem;
  padding-right: 1rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  background-color: var(--luvina-100);
  border: 1px solid var(--luvina-200);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: black;
  outline: none;
  transition: all 0.2s;
}

.search-input::placeholder {
  color: var(--luvina-400);
}

.search-input:focus {
  ring: 1px;
  ring-color: var(--luvina-500);
  border-color: var(--luvina-500);
}

/* Navigation Styles */
.nav-container {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

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

.nav-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
}

.nav-button:hover {
  background-color: var(--luvina-100);
  color: black;
}

.nav-button.active {
  background-color: var(--luvina-100);
  color: var(--luvina-600);
}

.nav-button-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  color: var(--luvina-400);
  transition: color 0.2s;
}

.nav-button:hover .nav-icon,
.nav-button.active .nav-icon {
  color: var(--luvina-500);
}

.nav-title {
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
}

.nav-button.active .nav-title {
  font-weight: 600;
}

.nav-chevron {
  color: var(--luvina-400);
  transition: transform 0.2s;
  width: 14px;
  height: 14px;
}

.nav-chevron.expanded {
  transform: rotate(180deg);
}

/* Subsections */
.subsections {
  margin-top: 0.25rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 2px solid var(--luvina-100);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.subsection-button {
  width: 100%;
  text-align: left;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  transition: colors 0.2s;
  cursor: pointer;
  background: none;
  border: none;
}

.subsection-button.active {
  color: var(--luvina-600);
  font-weight: 600;
  background-color: var(--luvina-100);
}

.subsection-button:not(.active) {
  color: #6b7280;
}

.subsection-button:not(.active):hover {
  color: black;
  background-color: var(--luvina-100);
}

/* PDF Nav Item */
.pdf-nav-item {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--luvina-100);
}

.pdf-nav-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  text-decoration: none;
  color: var(--luvina-600);
}

.pdf-nav-button:hover {
  background-color: var(--luvina-100);
  color: var(--luvina-700);
}

.pdf-nav-button .nav-icon {
  color: var(--luvina-500);
}

.pdf-nav-button:hover .nav-icon {
  color: var(--luvina-600);
}

.pdf-nav-button .nav-title {
  font-weight: 600;
  color: inherit;
}

/* Sidebar Footer */
.sidebar-footer {
  padding: 1rem;
  border-top: 1px solid var(--luvina-100);
  background-color: white;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: #6b7280;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: colors 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
}

.footer-link:hover {
  color: var(--luvina-500);
  background-color: var(--luvina-100);
}

.footer-icon {
  width: 16px;
  height: 16px;
}

.footer-copyright {
  padding: 0 0.75rem;
  padding-top: 1rem;
  font-size: 0.625rem;
  color: var(--luvina-300);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}

/* Main Content Area */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  position: relative;
  background-color: white;
}

.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background-color: white;
  border-bottom: 1px solid var(--luvina-200);
  z-index: 30;
  position: sticky;
  top: 0;
}

@media (min-width: 768px) {
  .mobile-header {
    display: none;
  }
}

.mobile-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-btn {
  padding: 0.5rem;
  margin-left: -0.5rem;
  color: #4b5563;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-logo {
  height: 1.5rem;
  width: auto;
}

.menu-icon {
  width: 24px;
  height: 24px;
}

/* Content Scroll Area */
.content-scroll {
  flex: 1;
  overflow-y: auto;
}

.content-wrapper {
  max-width: 56rem;
  margin: 0 auto;
  padding: 1.5rem;
  padding-bottom: 6rem;
}

@media (min-width: 768px) {
  .content-wrapper {
    padding: 3rem;
  }
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 2rem;
}

.breadcrumb-path {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--luvina-400);
  margin-bottom: 0.75rem;
}

.breadcrumb-separator {
  width: 12px;
  height: 12px;
}

.breadcrumb-current {
  color: var(--luvina-500);
}

.content-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: black;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .content-title {
    font-size: 2.5rem;
  }
}

.content-divider {
  height: 4px;
  width: 5rem;
  background-color: var(--luvina-500);
  border-radius: 9999px;
}

/* Featured Image */
.featured-image {
  margin-bottom: 2.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid var(--luvina-100);
}

.featured-image img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  transition: transform 1s;
}

.featured-image:hover img {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .featured-image img {
    height: 24rem;
  }
}

/* Body Text */
.body-text {
  max-width: none;
}

.body-text p {
  margin-bottom: 1rem;
  color: #374151;
  line-height: 1.75;
  font-weight: 400;
}

.body-text strong {
  font-weight: 700;
  color: black;
}

.body-text .list-item {
  display: flex;
  gap: 0.75rem;
  padding-left: 0.5rem;
  margin-bottom: 0.5rem;
}

.body-text .list-number {
  font-weight: 700;
  color: var(--luvina-500);
}

/* SVG Icons */
.icon-svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  stroke: currentColor;
  fill: none;
}

/* PDF Section in Documentation */
.pdf-section-doc {
  margin-top: 4rem;
  margin-bottom: 2rem;
  width: 100%;
}

.pdf-divider-text-doc {
  text-align: center;
  color: var(--luvina-400);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.pdf-buttons-doc {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pdf-button-doc {
  width: 100%;
  height: 4rem;
  display: flex;
  align-items: center;
  padding: 0;
  background-color: white;
  border: 1px solid var(--luvina-200);
  border-radius: 0.75rem;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
}

.pdf-button-doc::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4rem;
  background: transparent;
  z-index: 1;
}

.pdf-button-doc::after {
  content: '';
  position: absolute;
  left: 4rem;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(177, 80, 54, 0.05), rgba(177, 80, 54, 0.15));
  transition: all 0.3s;
}

.pdf-button-doc:hover {
  border-color: var(--luvina-500);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.pdf-button-doc:hover::after {
  background: linear-gradient(to right, rgba(177, 80, 54, 0.15), rgba(177, 80, 54, 0.3));
}

.pdf-button-doc.pdf-button-en::after {
  background: linear-gradient(to right, rgba(177, 80, 54, 0.05), rgba(177, 80, 54, 0.12));
}

.pdf-button-doc.pdf-button-en:hover::after {
  background: linear-gradient(to right, rgba(177, 80, 54, 0.12), rgba(177, 80, 54, 0.25));
}

.pdf-button-doc.pdf-button-tr::after {
  background: linear-gradient(to right, rgba(227, 10, 23, 0.1), rgba(177, 80, 54, 0.2));
}

.pdf-button-doc.pdf-button-tr:hover::after {
  background: linear-gradient(to right, rgba(227, 10, 23, 0.2), rgba(177, 80, 54, 0.35));
}

.pdf-button-doc.pdf-button-ru::after {
  background: linear-gradient(to right, rgba(0, 57, 166, 0.1), rgba(177, 80, 54, 0.2));
}

.pdf-button-doc.pdf-button-ru:hover::after {
  background: linear-gradient(to right, rgba(0, 57, 166, 0.2), rgba(177, 80, 54, 0.35));
}

.pdf-flag-doc {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background-color: transparent;
  border-radius: 0.75rem 0 0 0.75rem;
  position: relative;
  z-index: 2;
  transition: all 0.3s;
  line-height: 1;
}

.pdf-button-doc:hover .pdf-flag-doc {
  transform: scale(1.1);
}

.pdf-title-doc {
  position: absolute;
  left: 4rem;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--luvina-800);
  z-index: 3;
  transition: color 0.3s;
  text-align: center;
}

.pdf-button-doc:hover .pdf-title-doc {
  color: var(--luvina-900);
}

/* ============================================
   Assembly Diagrams - PDF Download Cards
   ============================================ */

/* The body-text wrapping doc-links becomes a flex grid */
.body-text:has(.doc-link) {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Intro text takes full width */
.body-text:has(.doc-link)>p:not(:has(.doc-link)) {
  width: 100%;
  flex-basis: 100%;
}

/* Hide line breaks in the grid */
.body-text:has(.doc-link)>br {
  display: none;
}

/* Each link card takes 1/3 width */
.body-text:has(.doc-link)>p:has(.doc-link) {
  flex: 0 0 calc(33.333% - 0.5rem);
  margin-bottom: 0;
  display: flex;
}

.body-text:has(.doc-link)>p:has(.doc-link) .doc-link {
  flex: 1;
}

@media (max-width: 1024px) {
  .body-text:has(.doc-link)>p:has(.doc-link) {
    flex: 0 0 calc(50% - 0.375rem);
  }
}

@media (max-width: 640px) {
  .body-text:has(.doc-link)>p:has(.doc-link) {
    flex: 0 0 100%;
  }
}

.doc-link {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background-color: white;
  border: 1px solid var(--luvina-200);
  border-radius: 0.75rem;
  text-decoration: none !important;
  color: var(--luvina-800) !important;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.doc-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--luvina-500);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.doc-link::after {
  content: '↓';
  margin-left: auto;
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--luvina-100);
  color: var(--luvina-400);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.25s ease;
}

.doc-link:hover {
  border-color: var(--luvina-500);
  background-color: #fef7f5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(177, 80, 54, 0.08);
  color: var(--luvina-900) !important;
}

.doc-link:hover::before {
  opacity: 1;
}

.doc-link:hover::after {
  background-color: var(--luvina-500);
  color: white;
}