:root {
  --accent-color: #2196f3;
  --primary-color: #1976d2;
  --dark-bg: #333;
  --light-bg: #fff;
  --border-radius: 15px;
  --text-dark: #333;
  --text-light: #fff;
  --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::selection {
  background-color: var(--accent-color);
  color: white;
}

::-moz-selection {
  background-color: var(--accent-color);
  color: white;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  transition: var(--transition);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.light-mode,
body.light-mode {
  background-color: #f5f5f5;
  color: var(--text-dark);
}

html.dark-mode,
body.dark-mode {
  background-color: var(--dark-bg);
  color: var(--text-light);
}

main {
  flex: 1;
}

nav {
  background-color: var(--primary-color);
  padding: 1.375rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.nav-links a:hover {
  opacity: 0.8;
}

.container {
  max-width: 1400px;
  margin: 2rem auto;
  padding: 0 2rem;
}

@media (min-width: 1600px) {
  .container {
    max-width: 1600px;
  }
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 320px));
  gap: 2.5rem;
  margin-top: 2rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .articles-grid {
    justify-content: flex-start;
  }
}

.article-card {
  background: var(--light-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

body.dark-mode .article-card {
  background: #444;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.article-thumbnail {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .article-thumbnail {
  transform: scale(1.08);
}

.article-card > :first-child {
  overflow: hidden;
}

.article-content {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  line-height: 1.3;
  font-weight: 600;
}

body.dark-mode .article-title {
  color: var(--text-light);
}

.article-description {
  color: #666;
  margin-bottom: 1.25rem;
  flex: 1;
  line-height: 1.6;
}

body.dark-mode .article-description {
  color: #ccc;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #888;
}

.article-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.tag {
  background-color: var(--accent-color);
  color: var(--text-light);
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius);
  font-size: 0.85rem;
}

.btn {
  background-color: var(--accent-color);
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.btn-danger {
  background-color: #f44336;
}

.btn-secondary {
  background-color: #757575;
}

.article-hero-wrapper {
  display: flex;
  justify-content: center;
  background: transparent;
  padding: 2rem 2rem 0;
}

.article-hero {
  position: relative;
  width: 100%;
  max-width: 1400px;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.article-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(20px);
  transform: scale(1.1);
  z-index: 1;
}

.article-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, 
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.5) 70%,
    rgba(0, 0, 0, 0.3) 85%,
    transparent 100%
  );
  z-index: 2;
}

body.dark-mode .article-hero-overlay {
  background: linear-gradient(to bottom, 
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.65) 70%,
    rgba(0, 0, 0, 0.4) 85%,
    transparent 100%
  );
}

.article-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 4rem 2rem;
  margin: 0 auto;
}

.article-header {
  max-width: 900px;
  margin: 0 auto;
}

.article-full-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}

.article-meta-wrapper {
  padding: 1.5rem 0;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.article-meta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #fff;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.meta-item svg {
  flex-shrink: 0;
  opacity: 0.9;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.article-tags-inline {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.article-tags-inline .tag {
  background-color: rgba(33, 150, 243, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.article-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin-top: 1.5rem;
}

.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  min-width: 110px;
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
  color: white;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.5);
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.action-btn:active {
  transform: translateY(0);
}

.action-btn svg {
  flex-shrink: 0;
  transition: all 0.3s ease;
  color: white;
  width: 18px;
  height: 18px;
}

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

.action-btn.active svg {
  color: white;
  animation: heartBeat 0.3s ease;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.action-count {
  min-width: 20px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.share-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark-bg);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  z-index: 10000;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body.dark-mode .share-toast {
  background: #2196f3;
}

.share-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.share-toast svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.article-full-wrapper {
  display: flex;
  justify-content: center;
  background: transparent;
  padding: 0 2rem 2rem;
}

.article-full {
  width: 100%;
  max-width: 1400px;
  padding: 3rem 2rem;
  background: var(--light-bg);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  box-shadow: var(--card-shadow);
}

body.dark-mode .article-full {
  background: #444;
}

.article-full-content {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

.article-full-content p {
  margin-bottom: 1.5rem;
}

.article-full-content h1,
.article-full-content h2,
.article-full-content h3,
.article-full-content h4,
.article-full-content h5,
.article-full-content h6 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.article-full-content h1 { font-size: 2.5rem; }
.article-full-content h2 { font-size: 2rem; }
.article-full-content h3 { font-size: 1.75rem; }
.article-full-content h4 { font-size: 1.5rem; }

.article-full-content ul,
.article-full-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.article-full-content li {
  margin-bottom: 0.5rem;
}

.article-full-content blockquote {
  border-left: 4px solid var(--accent-color);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #555;
}

body.dark-mode .article-full-content blockquote {
  color: #ccc;
}

.article-full-content code {
  background-color: #f4f4f4;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
  font-family: 'Courier New', monospace;
}

body.dark-mode .article-full-content code {
  background-color: #555;
  color: #f8f8f2;
}

.article-full-content pre {
  background-color: #f4f4f4;
  padding: 1rem;
  border-radius: var(--border-radius);
  overflow-x: auto;
  margin: 1.5rem 0;
}

body.dark-mode .article-full-content pre {
  background-color: #2d2d2d;
}

.article-full-content pre code {
  background-color: transparent;
  padding: 0;
}

.article-full-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  margin: 2rem auto;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.article-full-content iframe {
  width: 100%;
  border-radius: var(--border-radius);
  margin: 2rem 0;
  min-height: 400px;
}

.article-full-content a {
  color: var(--accent-color);
  text-decoration: underline;
  transition: var(--transition);
}

.article-full-content a:hover {
  color: var(--primary-color);
}

.login-container {
  max-width: 400px;
  margin: 5rem auto;
  padding: 2rem;
  background: var(--light-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}

body.dark-mode .login-container {
  background: #444;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 1rem;
}

.form-group textarea {
  resize: none;
  min-height: 150px;
  overflow-y: auto;
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea,
body.dark-mode .form-group select {
  background: #555;
  border-color: #666;
  color: var(--text-light);
}

body.dark-mode .form-group input:disabled {
  background: #444;
  color: #999;
}

.error-message {
  background-color: #ffebee;
  color: #c62828;
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

.dashboard-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
  justify-content: center;
  align-items: stretch;
}

.dashboard-stats .stat-card {
  flex: 0 0 250px;
  width: 250px;
}

.stat-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  text-align: center;
}

body.dark-mode .stat-card {
  background: #444;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--accent-color);
}

.stat-label {
  font-size: 1rem;
  color: #666;
  margin-top: 0.5rem;
}

body.dark-mode .stat-label {
  color: #ccc;
}

.admin-table {
  width: 100%;
  background: var(--light-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

body.dark-mode .admin-table {
  background: #444;
}

.admin-table table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

body.dark-mode .admin-table th,
body.dark-mode .admin-table td {
  border-bottom-color: #555;
}

.admin-table th {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.editor-container {
  max-width: 900px;
  margin: 2rem auto;
}

.editor-form {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}

body.dark-mode .editor-form {
  background: #444;
}

#editor {
  min-height: 400px;
  background: white;
  border-radius: var(--border-radius);
}

.ql-toolbar {
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}

.ql-container {
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}

.loading {
  text-align: center;
  padding: 2rem;
  font-size: 1.2rem;
}

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

html.dark-mode .page-loader,
body.dark-mode .page-loader {
  background-color: #333333;
}

.page-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.page-loader img {
  width: 400px;
  height: 400px;
  max-width: 90vw;
  max-height: 90vh;
}

.content-loader {
  display: none;
  text-align: center;
  padding: 3rem;
}

.content-loader.active {
  display: block;
}

.content-loader img {
  width: 300px;
  height: 300px;
  margin: 0 auto;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.modal-content {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

body.dark-mode .modal-content {
  background: var(--dark-bg);
  color: var(--text-light);
}

.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background-color: var(--light-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

body.dark-mode .modal-content {
  background-color: #444;
}

.modal-content h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

body.dark-mode .modal-content h2 {
  color: var(--text-light);
}

.modal-content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.modal-actions .btn {
  min-width: 100px;
}

.world-map-container {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  margin-bottom: 2rem;
}

body.dark-mode .world-map-container {
  background: #444;
}

body.dark-mode .world-map-container h2 {
  color: var(--text-light) !important;
}

.map-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  z-index: 10;
  border-radius: var(--border-radius);
}

body.dark-mode .map-spinner {
  background: rgba(68, 68, 68, 0.9);
}

.map-spinner.hidden {
  display: none;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #e0e0e0;
  border-top-color: var(--accent-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.world-map {
  width: 100% !important;
  height: 900px !important;
  min-height: 900px !important;
  border-radius: var(--border-radius);
  overflow: hidden;
  background: #f8f9fa;
}

.jsvectormap-tip {
  background: var(--dark-bg) !important;
  color: var(--text-light) !important;
  border-radius: 8px !important;
  padding: 8px 12px !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
  font-size: 14px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  border: none !important;
  pointer-events: none;
  z-index: 10001 !important;
}

.jsvectormap-container {
  width: 100% !important;
  height: 100% !important;
}

#world-map svg {
  width: 100% !important;
  height: 900px !important;
}

@media (min-width: 1600px) {
  .article-hero {
    max-width: 1600px;
  }
  
  .article-full {
    max-width: 1600px;
  }
  
  .article-full-content {
    max-width: 1000px;
  }
  
  .article-header {
    max-width: 1000px;
  }
}

@media (min-width: 1200px) and (max-width: 1599px) {
  .article-hero {
    max-width: 1300px;
  }
  
  .article-full {
    max-width: 1300px;
  }
}

@media (max-width: 1024px) {
  .article-hero-wrapper {
    padding: 1.5rem 1.5rem 0;
  }
  
  .article-actions {
    margin-top: 1.25rem;
    gap: 0.625rem;
  }
  
  .action-btn {
    padding: 0.45rem 0.9rem;
    font-size: 0.85rem;
    min-width: 100px;
  }
  
  .action-btn svg {
    width: 16px;
    height: 16px;
  }
  
  .article-full-wrapper {
    padding: 0 1.5rem 1.5rem;
  }
  
  .article-hero {
    min-height: 450px;
  }
  
  .article-hero-content {
    padding: 3rem 1.5rem;
  }
  
  .article-full {
    padding: 2rem 1.5rem;
  }
  
  .article-full-title {
    font-size: 2.75rem;
  }
  
  .article-full-content {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .admin-table {
    overflow-x: auto;
  }
  
  .world-map {
    height: 600px !important;
    min-height: 600px !important;
  }
  
  #world-map svg {
    height: 600px !important;
  }
  
  .world-map-container {
    padding: 1rem;
  }
  
  .article-hero-wrapper {
    padding: 1rem 1rem 0;
  }
  
  .article-actions {
    margin-top: 1rem;
    gap: 0.625rem;
  }
  
  .action-btn {
    padding: 0.45rem 0.85rem;
    font-size: 0.85rem;
    min-width: 95px;
  }
  
  .action-btn svg {
    width: 16px;
    height: 16px;
  }
  
  .article-full-wrapper {
    padding: 0 1rem 1rem;
  }
  
  .article-hero {
    min-height: 400px;
    border-radius: 10px 10px 0 0;
  }
  
  .article-hero-content {
    padding: 2.5rem 1rem;
  }
  
  .article-hero::before {
    filter: blur(15px);
  }
  
  .article-full {
    padding: 2rem 1rem;
    border-radius: 0 0 10px 10px;
  }
  
  .article-full-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .article-meta-wrapper {
    padding: 1rem 0;
  }
  
  .article-meta-info {
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.9rem;
  }
  
  .article-full-content {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .article-full-content h1 { font-size: 1.75rem; }
  .article-full-content h2 { font-size: 1.5rem; }
  .article-full-content h3 { font-size: 1.3rem; }
  .article-full-content h4 { font-size: 1.1rem; }
  
  .article-full-content img {
    margin: 1.5rem auto;
    border-radius: 10px;
  }
  
  .article-full-content iframe {
    min-height: 250px;
    margin: 1.5rem 0;
  }
  
  .article-full-content blockquote {
    padding-left: 1rem;
    margin: 1rem 0;
  }
  
  .article-full-content pre {
    padding: 0.75rem;
    margin: 1rem 0;
    font-size: 0.9rem;
  }
  
  .article-full-content ul,
  .article-full-content ol {
    padding-left: 1.5rem;
  }
}

@media (max-width: 480px) {
  .article-hero-wrapper {
    padding: 0.5rem 0.5rem 0;
  }
  
  .article-actions {
    margin-top: 0.875rem;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  
  .action-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
    min-width: 90px;
  }
  
  .action-btn svg {
    width: 15px;
    height: 15px;
  }
  
  .share-toast {
    bottom: 1rem;
    font-size: 0.9rem;
    padding: 0.875rem 1.25rem;
  }
  
  .article-full-wrapper {
    padding: 0 0.5rem 0.5rem;
  }
  
  .article-hero {
    min-height: 350px;
    border-radius: 8px 8px 0 0;
  }
  
  .article-hero-content {
    padding: 2rem 1rem;
  }
  
  .article-hero::before {
    filter: blur(12px);
  }
  
  .article-full {
    padding: 1.5rem 1rem;
    border-radius: 0 0 8px 8px;
  }
  
  .article-full-title {
    font-size: 1.75rem;
  }
  
  .article-full-content {
    font-size: 0.95rem;
  }
  
  nav {
    padding: 1rem;
  }
  
  .nav-brand {
    font-size: 1.25rem;
  }
  
  .container {
    padding: 0 1rem;
  }
}

