/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* Scope styles to blog posts that include .alpine-post */
.alpine-post {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 48px;
  background-color: #00002c;
  color: #ffffff;
}

.alpine-post h1, .alpine-post h2, .alpine-post h3 {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.alpine-header {
  background: linear-gradient(135deg, #00002c, #0060ff);
  color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 1px solid #00ffff;
}

.alpine-subtitle {
  opacity: 0.9;
  font-style: italic;
  font-size: 1.1em;
  margin-top: .5rem;
  color: #00ffff;
  font-family: 'Poppins', sans-serif;
}

.alpine-section {
  background: rgba(255, 255, 255, 0.02);
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.alpine-highlight {
  background: linear-gradient(120deg, rgba(0, 255, 255, 0.1), rgba(0, 96, 255, 0.1));
  padding: 1rem;
  border-radius: 6px;
  margin: 1rem 0;
  border-left: 4px solid #00ffff;
  color: #ffffff;
}

.alpine-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.alpine-table th {
  background: linear-gradient(135deg, #00002c, #0060ff) !important;
  color: #ffffff !important;
  padding: 12px;
  text-align: left;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  border-bottom: 1px solid #00ffff;
}

.alpine-table td {
  padding: 12px;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
  color: #ffffff !important;
}

.alpine-table tr:nth-child(even) { background-color: rgba(0, 255, 255, 0.02) !important; }
.alpine-table tr:hover { background-color: rgba(0, 255, 255, 0.05) !important; }

.alpine-row {
  background: linear-gradient(120deg, rgba(0, 255, 255, 0.1), rgba(0, 96, 255, 0.1)) !important;
  font-weight: 600;
  border-left: 3px solid #00ffff;
}
.alpine-row:hover {
  background: linear-gradient(120deg, rgba(0, 255, 255, 0.2), rgba(0, 96, 255, 0.2)) !important;
}

.alpine-data {
  background: linear-gradient(135deg, rgba(251, 174, 23, 0.1), rgba(0, 96, 255, 0.1));
  padding: 1rem;
  border-radius: 6px;
  margin: 1rem 0;
  border-left: 4px solid #fbae17;
  color: #ffffff;
}

.alpine-cta {
  background: linear-gradient(135deg, #fbae17, #0060ff);
  color: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  border: 1px solid #00ffff;
}
.alpine-cta h2 { color: #ffffff; border-bottom: 2px solid #00ffff; }

.alpine-action {
  background: rgba(0, 96, 255, 0.1);
  padding: 1rem;
  border-radius: 6px;
  margin: .5rem 0;
  border-left: 4px solid #00ffff;
  color: #ffffff;
}

/* details/summary */
.alpine-post details {
  background: rgba(0, 96, 255, 0.05);
  padding: 1rem;
  margin: 0.5rem 0;
  border-radius: 6px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}
.alpine-post summary {
  cursor: pointer;
  font-weight: 600;
  color: #00ffff;
  padding: 0.5rem 0;
  font-family: 'Poppins', sans-serif;
}

/* links */
.alpine-post a { color: #00ffff; text-decoration: none; }
.alpine-post a:hover { color: #0060ff; text-decoration: underline; }

.alpine-post strong { color: #00ffff; font-weight: 600; }

/* optional: make post container edge-to-edge on WP content area */
.entry-content .alpine-post, .wp-block-post-content .alpine-post {
  margin-left: max(0px, calc(50% - 600px));
  margin-right: max(0px, calc(50% - 600px));
}