* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}
  
html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, sans-serif, Arial, 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans';
  background-color: #dddddd;
  overflow-wrap: break-word;
  word-break: break-word;
}

.logo-stripe {
  height: 100px;
  background-color: #0077B6;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25); */
}
  
.logo {
  max-width: 100%;
  max-height: 80px;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}

/* Page container with 3-column layout */
.page-container {
  display: grid;
  grid-template-columns: 1fr 1000px 1fr;
  gap: 0;
  padding-top: 70px;
}

.sidebar {
  background-color: #dddddd;
  /* padding: 20px; */
  position: sticky;
  top: 70px;
  align-self: start;
}

/* Reduce sidebar padding on medium screens for better ad display */
@media (max-width: 1400px) {
  /* .sidebar {
    padding: 10px;
  } */
}

/* Hide sidebars on smaller screens for better mobile experience and ad compliance */
@media (max-width: 1200px) {
  .page-container {
    display: flex;
    justify-content: center;
    padding-top: 70px;
  }

  .sidebar {
    display: none;
  }

  .main-content {
    max-width: 1000px;
    width: 100%;
    margin: 0;
  }
}

.main-content {
  max-width: 1000px;
  width: 100%;
  margin: 0;
  padding: 20px;
  /* border-left: 1px solid silver;
  border-right: 1px solid silver; */
  background-color: #f0f0f0;
  /* padding-bottom: 30px; */
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

.main-content-heading {
  text-align: center;
  margin-bottom: 10px;
  font-size: 32px;
}

/* Allow "Skin Pack" to wrap on very small screens */
@media (max-width: 350px) {
  .main-content-heading span {
    white-space: normal !important;
  }
}

/* Highlights Section */
.highlights-section {
  margin-top: 1.5rem;
  margin-bottom: 0;
  padding: 0;
}

.highlights-container {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.highlight-item {
  text-align: center;
  flex: 0 0 auto;
}

.highlight-number {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.highlight-label {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .highlights-container {
    gap: 2rem;
  }
  
  .highlight-number {
    font-size: 1.5rem;
  }
  
  .highlight-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .highlights-container {
    gap: 1.5rem;
  }
  
  .highlight-number {
    font-size: 1.3rem;
  }
  
  .highlight-label {
    font-size: 0.75rem;
  }
}

article .table-of-contents h2:first-child {
  margin-top: 0;
}

article h2,
h3,
h4,
h5,
h6 {
  margin-top: 20px;
  margin-bottom: 10px;
}

img + p {
  margin-top: 10px;
}

.image-box + p {
  margin-top: 10px;
}

p {
  /* text-align: justify; */
  font-size: 16px;
  margin-bottom: 10px;
}

.main-content article section img {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 100%;
  margin-top: 10px;

  border-radius: 24px;
}

.main-content article section ul {
  font-size: 16px;
  list-style-type: disc;
  padding: 0;
  padding-left: 30px;
  margin-left: 0;
}

/* Global list styling for article content (not breadcrumbs or nav) */
.main-content article ul {
  font-size: 16px;
  list-style-type: disc;
  padding: 0;
  padding-left: 30px;
  margin-left: 0;
  margin-bottom: 10px;
}

.main-content article li {
  margin-bottom: 4px;
}

/* Global ordered list styling for article content */
.main-content article ol {
  font-size: 16px;
  padding: 0;
  padding-left: 30px;
  margin-left: 0;
  margin-bottom: 10px;
}

.bedrock-heading {
  font-size: 2.25rem;
  line-height: 2.5rem;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  text-align: center;
}

.blue-gradient-text {
  background-image: linear-gradient(to bottom, #5EA2EF, #0072F5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-font-smoothing: antialiased;
}

.main-content article section ol {
  font-size: 16px;
  padding-left: 30px;
}

code {
  background-color: #f6f8fa;
  border: 1px solid #d0d7de;
  border-radius: 8px;
  padding: 0.2em 0.4em;
  font-family: Consolas, 'Roboto Mono', 'SF Mono', Monaco, 'Cascadia Code', 'Liberation Mono', 'Courier New', monospace;
  font-size: 85%;
}

pre code {
  background-color: inherit;
  border: none;
  padding: 0;
  border-radius: 0;
  font-size: 100%;
}

.return-back {
  text-align: center;
  font-size: 16px; 
  margin-top: 25px;
  padding: 10px;
}

.article-meta {
  margin-top: -4px;
  margin-bottom: 12px;
}

.article-date {
  color: #666;
  font-size: 14px;
  margin-right: 8px;
}