
.mb-version-notice,
.mb-version-requirements,
.mb-aside {
  border-radius: 0;
  border: 1px solid var(--mb-border);
  box-shadow: var(--mb-shadow-sm);
}

.mb-version-notice {
  padding: 1rem 1.1rem;
  margin-bottom: 1.5rem;
  border-left: 5px solid var(--mb-accent);
  background: rgba(255, 250, 242, 0.82);
}

.mb-version-notice-development {
  border-left-color: var(--mb-warning);
  background: rgba(255, 240, 220, 0.9);
  color: var(--mb-text-primary);
}

.mb-version-notice-stable {
  border-left-color: var(--mb-success);
  background: rgba(240, 250, 230, 0.9);
  color: var(--mb-text-primary);
}

.mb-version-requirements {
  padding: 0.85rem 1rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 247, 234, 0.9);
  color: var(--mb-text-secondary);
}

.mb-version-requirements em {
  color: var(--mb-text-primary);
}

.mb-version-requirements strong {
  color: var(--mb-text-primary);
}

.mb-aside {
  padding: 1rem 1.1rem;
  margin: 1.5rem 0;
  background: rgba(255, 248, 236, 0.9);
  color: var(--mb-text-secondary);
}

.mb-aside p:last-child {
  margin-bottom: 0;
}

.mb-note {
  margin: 1.5rem 0;
  padding: 1rem 1.1rem;
  border-radius: 0;
  border: 1px solid var(--mb-border);
  border-left-width: 5px;
  box-shadow: var(--mb-shadow-sm);
}

.mb-note-row,
.mb-note-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.mb-note-icon {
  flex: 0 0 auto;
  font-size: 1.1rem;
  line-height: 1;
  margin-top: 0.15rem;
}

.mb-note-body,
.mb-note-copy {
  flex: 1 1 auto;
  color: var(--mb-text-secondary);
}

.mb-note-body > :last-child,
.mb-note-copy > :last-child {
  margin-bottom: 0;
}

.mb-note-content > :first-child,
.mb-note-copy p:first-child {
  margin-top: 0;
}

.mb-note-content > :last-child,
.mb-note-copy p:last-child {
  margin-bottom: 0;
}

.mb-note-content {
  margin-top: 0.45rem;
}

.mb-note-content p,
.mb-note-content ul,
.mb-note-content ol {
  color: inherit;
}

.mb-note-title {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--mb-text-primary);
  font-weight: 800;
}

.mb-note-note {
  border-left-color: rgba(111, 145, 104, 0.5);
  background: rgba(235, 245, 230, 0.92);
}

.mb-note-info {
  border-left-color: #7d9cba;
  background: rgba(230, 240, 250, 0.88);
}

.mb-note-tip {
  border-left-color: var(--mb-success);
  background: rgba(235, 245, 230, 0.88);
}

.mb-note-warning {
  border-left-color: var(--mb-warning);
  background: rgba(255, 245, 220, 0.92);
}

.mb-note-caution {
  border-left-color: var(--mb-danger);
  background: rgba(255, 235, 230, 0.92);
}

.mb-note-default {
  border-left-color: rgba(94, 79, 64, 0.4);
  background: rgba(255, 248, 236, 0.9);
}

/* Button Classes */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--mb-accent-primary) !important;
    color: var(--mb-bg-dark) !important;
}

.btn-primary:hover {
    background-color: var(--mb-accent-secondary) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 185, 128, 0.4);
    text-decoration: none;
}

.btn-outline {
    background: transparent !important;
    border: 1px solid var(--mb-accent-primary) !important;
    color: var(--mb-accent-primary) !important;
}

.btn-outline:hover {
    background: rgba(230, 185, 128, 0.1) !important;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Layout helpers */
.cta-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}