/* SECTION: Content Panel System */

.content-panel-system {
  margin: 40px 0;
}

/* SECTION: Button Grid */

.content-panel-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 30px;
}

/* SECTION: Panel Buttons */

.content-panel-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  min-height: 58px;
  min-width: 170px;

  padding: 12px 18px;

  border: none;
  border-radius: 12px;

  background: #0d6efd;
  color: #ffffff;

  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;

  cursor: pointer;

  transition:
    transform 0.15s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

/* SECTION: Button Hover */

.content-panel-button:hover {
  background: #0b5ed7;
  transform: translateY(-2px);
}

/* SECTION: Active Button */

.content-panel-button.active {
  background: #198754;
  color: #ffffff;
}

/* SECTION: Display Area */

.content-panel-display {
  width: 100%;
}

/* SECTION: Panel Content */

.content-panel-content {
  display: none;

  margin-top: 10px;
  padding: 30px;

  background: #ffffff;

  border-radius: 18px;

  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* SECTION: Active Panel */

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

/* SECTION: Typography */

.content-panel-content h2,
.content-panel-content h3,
.content-panel-content h4 {
  margin-bottom: 18px;
  font-weight: 700;
}

.content-panel-content p {
  line-height: 1.7;
}

/* SECTION: Lists */

.content-panel-content ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.content-panel-content li {
  margin-bottom: 10px;
}

/* SECTION: CTA Button */

.content-panel-link-wrap {
  margin-top: 24px;
}

.content-panel-link-button {
  display: inline-block;

  padding: 14px 24px;

  background: #198754;
  color: #ffffff;

  text-decoration: none;

  border-radius: 10px;

  font-weight: 600;

  transition:
    background 0.2s ease,
    transform 0.15s ease;
}

.content-panel-link-button:hover {
  background: #146c43;
  color: #ffffff;

  transform: translateY(-1px);
}

/* SECTION: Mobile */

@media (max-width: 768px) {
  .content-panel-button {
    width: 100%;
    min-width: unset;
    font-size: 1rem;
  }

  .content-panel-content {
    padding: 20px;
  }
}

/* SECTION: Panel Visibility */

.content-panel-content {
  display: none;
}

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

/* SECTION: Admin Preview Compact Mode */

.panel-admin-preview {
  padding: 20px;
  margin-bottom: 20px;
}

.panel-admin-preview .content-panel-display {
  margin-top: 18px;
}

.panel-admin-preview .content-panel-content {
  padding: 22px;
}

/* SECTION: Admin Content Panels Preview Compact */

.panel-admin-preview .content-panel-button {
    padding: 10px 16px;
    font-size: 0.95rem;
    min-width: 150px;
}

.panel-admin-preview .content-panel-grid {
    gap: 10px;
    margin-bottom: 14px;
}

.panel-admin-preview .content-panel-system {
    margin-bottom: 0;
}
