/* css/styles.css */

/* Base layout fixes to prevent overflow */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

* {
  box-sizing: border-box;
}

/* Theme and Language Toggle Buttons */
.theme-btn, .lang-btn {
  background: none !important;
  border: none !important;
  color: #00bfff;
  font-family: 'Fira Mono', 'Courier New', monospace;
  font-size: 1.25rem;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  padding: 0;
  /* Mobile improvements */
  min-height: 44px;
  min-width: 44px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-btn {
  margin-left: auto;
}

/* Language button specific styling */
.lang-btn {
  margin-left: 0.5rem;
}

/* Language button active/inactive states */
.lang-active {
  color: #00bfff;
  font-weight: bold;
}

.lang-inactive {
  color: #666;
  font-weight: normal;
}

body.theme-light .lang-active {
  color: #007bff;
}

body.theme-light .lang-inactive {
  color: #999;
}

body.theme-retro .lang-active {
  color: #0000ff;
  text-decoration: underline;
}

body.theme-retro .lang-inactive {
  color: #666;
}

.theme-btn:hover, .lang-btn:hover {
  color: #fff;
}

/* Theme button styling for different themes */
body.theme-light .theme-btn, body.theme-light .lang-btn {
  color: #007bff;
}

body.theme-light .theme-btn:hover, body.theme-light .lang-btn:hover {
  color: #0056b3;
}

body.theme-retro .theme-btn {
  color: #0000ff;
  text-decoration: underline;
}

body.theme-retro .theme-btn:hover {
  color: #000000;
}

/* Mobile-specific theme button improvements */
@media (max-width: 768px) {
  .theme-btn {
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
    border: 1px solid #00bfff;
    border-radius: 4px;
    background: rgba(0, 191, 255, 0.1);
    min-width: auto;
    min-height: auto;
  }
  
  .theme-btn:active {
    background: rgba(0, 191, 255, 0.2);
  }
  
  /* Ensure theme button is visible on mobile */
  nav li:last-child {
    margin-right: 0;
  }
  
  /* Mobile theme-specific button styling */
  body.theme-light .theme-btn {
    border-color: #007bff;
    background: rgba(0, 123, 255, 0.1);
  }
  
  body.theme-light .theme-btn:active {
    background: rgba(0, 123, 255, 0.2);
  }
  
  body.theme-retro .theme-btn {
    border-color: #0000ff;
    background: rgba(0, 0, 255, 0.1);
  }
  
  body.theme-retro .theme-btn:active {
    background: rgba(0, 0, 255, 0.2);
  }
}

/* Base styles */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'Fira Mono', 'Courier New', monospace;
  font-size: 18px;
  line-height: 1.6;
  transition: all 0.3s ease;
}

/* Professional typography for dark and light themes */
body.theme-dark,
body.theme-light {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  font-weight: 400;
}

/* Keep monospace for retro theme */
body.theme-retro {
  font-family: 'Fira Mono', 'Courier New', monospace;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0;
  font-weight: 400;
}

/* Dark Theme (Default) */
body.theme-dark {
  background: repeating-linear-gradient(
    to bottom,
    #2a2a2a 0px,
    #2a2a2a 2px,
    #292929 3px,
    #292929 4px
  );
  color: #ddd;
}

body.theme-dark main {
  background: #2a2a2a;
  border: 2px solid #444;
}

body.theme-dark header {
  background: #1f1f1f;
  border-bottom: 3px solid #4da6ff;
  border-top: 2px solid #444;
  border-left: 2px solid #444;
  border-right: 2px solid #444;
}

body.theme-dark footer {
  background: #1f1f1f;
  border-top: 2px solid #444;
  border-bottom: 2px solid #444;
  border-left: 2px solid #444;
  border-right: 2px solid #444;
  color: #888;
}

body.theme-dark .news-article,
body.theme-dark .news-article-single {
  background: #333;
  border: 2px solid #444;
}

body.theme-dark .about-profile {
  background: #333;
  border: 2px solid #444;
}

/* Light Theme */
body.theme-light {
  background: #ffffff;
  color: #333;
}

body.theme-light main {
  background: #ffffff;
  border: 1px solid #ddd;
}

body.theme-light header {
  background: #f8f9fa;
  border-bottom: 2px solid #007bff;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

body.theme-light footer {
  background: #f8f9fa;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  color: #666;
}

body.theme-light .news-article,
body.theme-light .news-article-single {
  background: #f8f9fa;
  border: 1px solid #ddd;
}

body.theme-light .about-profile {
  background: #f8f9fa;
  border: 1px solid #ddd;
}

body.theme-light a {
  color: #007bff;
}

body.theme-light a:hover {
  color: #0056b3;
}

body.theme-light .site-title {
  color: #007bff;
}

body.theme-light .site-title:hover {
  color: #0056b3;
}

body.theme-light .news-list a {
  color: #dc3545;
}

body.theme-light .news-list a:hover {
  color: #c82333;
}

/* Retro Theme (Netscape-style "broken CSS") */
body.theme-retro {
  background: #ffffff;
  color: #000000;
  font-family: 'Courier New', monospace;
}

body.theme-retro main {
  background: #ffffff;
  border: none;
  padding: 1rem;
}

body.theme-retro header {
  background: #ffffff;
  border: none;
  padding: 1rem;
}

body.theme-retro footer {
  background: #ffffff;
  border: none;
  color: #000000;
}

body.theme-retro .news-article,
body.theme-retro .news-article-single {
  background: #ffffff;
  border: none;
  padding: 0.5rem;
}

body.theme-retro .about-profile {
  background: #ffffff;
  border: none;
}

body.theme-retro a {
  color: #0000ff;
  text-decoration: underline;
}

body.theme-retro a:hover {
  color: #000000;
}

body.theme-retro .site-title {
  color: #000000;
}

body.theme-retro .site-title:hover {
  color: #000000;
}

body.theme-retro .news-list a {
  color: #0000ff;
}

body.theme-retro .news-list a:hover {
  color: #000000;
}

body.theme-retro .theme-btn {
  color: #0000ff;
}

body.theme-retro .theme-btn:hover {
  color: #000000;
}

/* Common styles */
main {
  flex: 1;
  padding: 2rem;
  border-radius: 0;
}

h1 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.4;
}

p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

/* Retro theme typography overrides */
body.theme-retro h1,
body.theme-retro h2,
body.theme-retro h3 {
  font-family: 'Fira Mono', 'Courier New', monospace;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
}

body.theme-retro p {
  font-family: 'Fira Mono', 'Courier New', monospace;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 1rem 1rem;
  border-radius: 0;
}

.logo {
  display: flex;
  align-items: center;
  margin-right: 2rem;
}

.logo h1 {
  margin-left: 0.5rem;
  color: #fff;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.5rem;
}

/* Professional typography for dark/light themes */
body.theme-dark .logo h1,
body.theme-light .logo h1 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Keep monospace for retro theme */
body.theme-retro .logo h1 {
  font-family: 'Fira Mono', 'Courier New', monospace;
  font-weight: 700;
  letter-spacing: 0;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

nav li {
  margin-right: 1rem;
}

nav li:last-child {
  margin-right: 0;
  margin-left: auto;
}

a {
  color: #00bfff;
  text-decoration: underline;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Professional typography for dark/light themes */
body.theme-dark a,
body.theme-light a {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Keep monospace for retro theme */
body.theme-retro a {
  font-family: 'Fira Mono', 'Courier New', monospace;
  font-weight: 700;
  letter-spacing: 0;
  font-size: 1.125rem;
}

a:hover {
  color: #fff;
  background: none;
  text-decoration: underline;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-list li {
  margin-bottom: 1rem;
}

.news-list a {
  color: #ff6b6b;
  text-decoration: none;
}

.news-list a:hover {
  text-decoration: underline;
  color: #ff8787;
}

/* News Categories */
.news-category {
  margin-bottom: 2.5rem;
}

.category-title {
  color: #00bfff;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #00bfff;
  font-family: 'Fira Mono', 'Courier New', monospace;
}

body.theme-light .category-title {
  color: #007bff;
  border-bottom-color: #007bff;
}

body.theme-retro .category-title {
  color: #0000ff;
  border-bottom-color: #0000ff;
  text-decoration: underline;
}

.article-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem 0;
}

.news-article,
.news-article-single {
  border-radius: 0;
  margin-bottom: 1.5rem;
  padding: 1rem;
}

.news-content {
  color: #ddd;
}

body.theme-light .news-content {
  color: #333;
}

body.theme-retro .news-content {
  color: #000000;
}

footer {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  padding: 1rem;
  width: 100%;
  border-radius: 0;
}

.footer-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-text p {
  margin: 0;
  line-height: 1.4;
}

.footer-text p:first-child {
  font-weight: 500;
  color: inherit;
}

.footer-text p:last-child {
  font-size: 0.95rem;
  opacity: 0.9;
}

.site-title {
  display: inline-block;
  background: none;
  color: #00bfff;
  border: none;
  padding: 0;
  border-radius: 0;
  font-weight: 700;
  font-size: 1.25rem;
  margin-left: 0.5rem;
  transition: color 0.3s;
  letter-spacing: -0.02em;
}

/* Professional typography for dark/light themes */
body.theme-dark .site-title,
body.theme-light .site-title {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Keep monospace for retro theme */
body.theme-retro .site-title {
  font-family: 'Fira Mono', 'Courier New', monospace;
  font-weight: 700;
  letter-spacing: 0;
}

.site-title:hover {
  color: #fff;
  background: none;
}

.about-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 0;
  margin-bottom: 2rem;
}

.profile-img {
  border-radius: 0;
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 2px solid #4da6ff;
}

body.theme-light .profile-img {
  border: 2px solid #007bff;
}

body.theme-retro .profile-img {
  border: none;
}

.about-details h3 {
  margin-top: 2rem;
  font-size: 1.5rem;
}

.contact-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 191, 255, 0.2);
}

.contact-section h3 {
  color: #00bfff;
  margin-bottom: 1rem;
}

.contact-section p {
  margin-bottom: 1rem;
}

/* Monthly Image Container */
.monthly-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem auto;
  padding: 1rem;
  border: 2px solid #4da6ff;
  border-radius: 8px;
  background: rgba(77, 166, 255, 0.05);
  max-width: 90vw;
  width: fit-content;
  overflow: hidden;
  transition: all 0.3s ease;
}

.monthly-image {
  max-width: 75%;
  width: 50%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  object-fit: contain;
  display: block;
  transition: all 0.3s ease;
}

.image-caption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #00bfff;
  font-weight: bold;
  text-align: center;
}

/* Theme-specific styling for monthly image */
body.theme-light .monthly-image-container {
  border-color: #007bff;
  background: rgba(0, 123, 255, 0.05);
}

body.theme-light .image-caption {
  color: #007bff;
}

body.theme-retro .monthly-image-container {
  border: none;
  background: #f0f0f0;
  box-shadow: 2px 2px 0 #000;
}

body.theme-retro .image-caption {
  color: #000000;
  text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .monthly-image-container {
    max-width: 95vw;
    width: fit-content;
    margin: 1rem auto;
    padding: 0.75rem;
  }
  
  .monthly-image {
    max-width: 100%;
    width: auto;
  }
}

/* Changelog Styles */
.changelog-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.changelog-section h2 {
  color: #00bfff;
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

.changelog-section p {
  color: #666;
  margin-bottom: 2rem;
  font-style: italic;
}

.changelog-source {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
  font-style: normal;
}

.changelog-source a {
  color: #00bfff;
  text-decoration: underline;
}

.changelog-source a:hover {
  color: #fff;
}

.news-description {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-style: italic;
}

.commits-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.commit-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid #4da6ff;
  border-radius: 8px;
  background: rgba(77, 166, 255, 0.05);
  transition: all 0.3s ease;
}

.commit-item:hover {
  background: rgba(77, 166, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 191, 255, 0.2);
}

.commit-avatar {
  flex-shrink: 0;
}

.commit-avatar .profile-pic {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #4da6ff;
  object-fit: cover;
}

.commit-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.commit-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.commit-hash {
  font-family: 'Fira Mono', 'Courier New', monospace;
  font-size: 0.9rem;
  color: #00bfff;
  background: rgba(0, 191, 255, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: bold;
}

.commit-date {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

.commit-message {
  font-size: 1rem;
  color: #fff;
  line-height: 1.4;
  font-weight: 500;
}

.commit-description {
  font-size: 0.9rem;
  color: #999;
  line-height: 1.3;
  font-style: italic;
  margin-top: 0.25rem;
  white-space: pre-line;
}

.commit-author {
  font-size: 0.9rem;
  color: #00bfff;
  font-weight: bold;
}

.loading, .no-commits, .error-message {
  text-align: center;
  padding: 2rem;
  color: #666;
  font-style: italic;
}

.error-message {
  color: #ff6b6b;
}

.error-details {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  opacity: 0.7;
}

/* Light theme changelog styles */
body.theme-light .changelog-section h2 {
  color: #007bff;
}

body.theme-light .changelog-source {
  color: #666;
}

body.theme-light .changelog-source a {
  color: #007bff;
}

body.theme-light .changelog-source a:hover {
  color: #0056b3;
}

body.theme-light .news-description {
  color: #666;
}

body.theme-light .commit-item {
  border-color: #007bff;
  background: rgba(0, 123, 255, 0.05);
}

body.theme-light .commit-item:hover {
  background: rgba(0, 123, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

body.theme-light .commit-avatar .profile-pic {
  border-color: #007bff;
}

body.theme-light .commit-hash {
  color: #007bff;
  background: rgba(0, 123, 255, 0.1);
}

body.theme-light .commit-message {
  color: #333;
}

body.theme-light .commit-description {
  color: #666;
}

body.theme-light .commit-author {
  color: #007bff;
}

/* Retro theme changelog styles */
body.theme-retro .changelog-section h2 {
  color: #0000ff;
  text-decoration: underline;
}

body.theme-retro .changelog-source {
  color: #666;
}

body.theme-retro .changelog-source a {
  color: #0000ff;
  text-decoration: underline;
}

body.theme-retro .changelog-source a:hover {
  color: #000000;
}

body.theme-retro .news-description {
  color: #666;
}

body.theme-retro .commit-item {
  border: none;
  background: #f0f0f0;
  box-shadow: 2px 2px 0 #000;
}

body.theme-retro .commit-item:hover {
  background: #e0e0e0;
  transform: translateY(-1px);
  box-shadow: 3px 3px 0 #000;
}

body.theme-retro .commit-avatar .profile-pic {
  border: none;
  box-shadow: 1px 1px 0 #000;
}

body.theme-retro .commit-hash {
  color: #0000ff;
  background: #e0e0e0;
  text-decoration: underline;
  border: 1px solid #000;
}

body.theme-retro .commit-message {
  color: #000000;
}

body.theme-retro .commit-description {
  color: #666;
  font-style: normal;
}

body.theme-retro .commit-author {
  color: #0000ff;
  text-decoration: underline;
}

/* Mobile responsiveness for changelog */
@media (max-width: 768px) {
  .changelog-section {
    padding: 1rem 0.5rem;
  }
  
  .commit-item {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .commit-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .commit-avatar .profile-pic {
    width: 40px;
    height: 40px;
  }
  
  .commit-message {
    font-size: 0.95rem;
  }
}

/* Status link styling */
#footer-status {
  color: #28a745 !important;
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  background: rgba(40, 167, 69, 0.1);
  transition: all 0.2s ease;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

#footer-status:hover {
  color: #20c997 !important;
  background: rgba(40, 167, 69, 0.2);
  border-color: rgba(40, 167, 69, 0.5);
  transform: translateY(-1px);
}

/* Theme-specific status link colors */
body.theme-light #footer-status {
  color: #28a745 !important;
  background: rgba(40, 167, 69, 0.1);
  border-color: rgba(40, 167, 69, 0.3);
}

body.theme-light #footer-status:hover {
  color: #20c997 !important;
  background: rgba(40, 167, 69, 0.2);
  border-color: rgba(40, 167, 69, 0.5);
}

body.theme-retro #footer-status {
  color: #008000 !important;
  background: rgba(0, 128, 0, 0.1);
  border: 2px solid #008000;
  text-decoration: none;
}

body.theme-retro #footer-status:hover {
  color: #006000 !important;
  background: rgba(0, 128, 0, 0.2);
  border-color: #006000;
}

/* Comprehensive mobile layout fixes */
@media (max-width: 768px) {
  /* Prevent horizontal overflow */
  body {
    min-height: 100vh;
    overflow-x: hidden;
    width: 100vw;
  }
  
  /* Header mobile fixes */
  header {
    padding: 0.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
    max-width: 100vw;
  }
  
  .logo {
    flex-shrink: 0;
    min-width: 0;
  }
  
  .logo h1 {
    font-size: 1.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* Navigation mobile fixes */
  nav {
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }
  
  nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
  }
  
  nav li {
    flex-shrink: 0;
    white-space: nowrap;
  }
  
  nav a {
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
    white-space: nowrap;
  }
  
  /* Main content mobile fixes */
  main {
    width: 100%;
    max-width: 100vw;
    padding: 1rem 0.5rem;
    overflow-x: hidden;
  }
  
  /* Footer mobile fixes */
  footer {
    width: 100%;
    max-width: 100vw;
    padding: 1rem 0.5rem;
    overflow-x: hidden;
  }
  
  /* News list mobile fixes */
  .news-list {
    width: 100%;
    max-width: 100%;
  }
  
  .news-list li {
    width: 100%;
    max-width: 100%;
  }
  
  .news-list a {
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Article content mobile fixes */
  .news-article,
  .about-profile {
    width: 100%;
    max-width: 100%;
    padding: 1rem 0.5rem;
    overflow-x: hidden;
  }
  
  .news-content {
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Image mobile fixes */
  .article-img {
    max-width: 100%;
    height: auto;
    width: 100%;
  }
  
  .profile-img {
    max-width: 100%;
    height: auto;
    width: 100%;
  }
  
  /* Monthly image mobile fixes */
  .monthly-image-container {
    max-width: 95vw;
    width: fit-content;
    margin: 1rem auto;
    padding: 0.75rem;
  }
  
  .monthly-image {
    max-width: 100%;
    width: auto;
    height: auto;
  }
  
  /* Theme and language buttons mobile fixes */
  .theme-btn, .lang-btn {
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
    min-width: auto;
    min-height: auto;
  }
  
  /* Ensure no horizontal scroll on any element */
  * {
    max-width: 100%;
  }
  
  /* Fix for long text content */
  h1, h2, h3, p, span, div {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}


 

