/* Bio Box Shortcode Styles */
.bio-box {
  display: flex;
  align-items: center;
  gap: 1em;
  margin: 2em 0 0 0;
}
.bio-box-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}
.bio-box-content {
  width: 100%;
}
.bio-box-byline {
  font-weight: 600;
  font-size: 1.1em;
  margin-bottom: 0.5em;
}
.bio-box-divider {
  border: none;
  border-top: 1px solid #ececec;
  margin: 0.7em 0 1em 0;
}
.bio-box-byline-link {
  color: #3366ff;
  text-decoration: none;
}
.bio-box-bio {
  font-size: 0.98em;
  color: #444;
  margin-top: 0.2em;
}

/* Archive List Shortcode Styles */
.archive-header {
  display: flex;
  align-items: center;
  gap: 1em;
  margin: 2em 0 1.5em 0;
  background: #f6f8fa;
  padding: 1.2em 1.5em;
  border-radius: 12px;
}
.archive-header-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}
.archive-header-content {}
.archive-header-byline {
  font-weight: 700;
  font-size: 1.2em;
}
.archive-header-byline-link {
  color: #3366ff;
  text-decoration: none;
}
.archive-header-bio {
  font-size: 1em;
  color: #444;
  margin-top: 0.2em;
}
.archive-header-articles-link {
  margin-top: 0.5em;
  font-size: 0.98em;
}
.archive-header-articles-link a {
  color: #3366ff;
  text-decoration: none;
}s

.archive-article-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5em;
  margin: 2em 0;
}
.archive-article-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  overflow: hidden;
}
.archive-article-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.archive-article-card-content {
  padding: 1em;
}
.archive-article-card-title {
  font-size: 1.08em;
  font-weight: 600;
  margin-bottom: 0.5em;
}
.archive-article-card-title a {
  color: #222;
  text-decoration: none;
}
.archive-article-card-date {
  font-size: 0.97em;
  color: #666;
}
.archive-article-list-empty {
  color: #888;
  margin: 2em 0;
}

.bio-box-multi {
  display: flex;
  align-items: center;
  gap: 1em;
  margin: 2em 0 0 0;
}
.bio-box-img-multi {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

/* Simple Author Profile Shortcode Styles */
.simple-author-profile {
  display: flex;
  align-items: flex-start;
  gap: 1.5em;
  margin: 2em 0;
}
.simple-author-profile img {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  object-fit: cover;
}
.simple-author-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 0.4em;
}
.simple-author-bio {
  font-size: 1.05em;
  color: #333;
}
@media (max-width: 600px) {
  .simple-author-profile {
    flex-direction: column;
    align-items: center;
    gap: 1em;
  }
  .simple-author-profile img {
    width: 280px;
    height: 280px;
  }
  .simple-author-title {
    font-size: 1.15em;
  }
}

@media (max-width: 700px) {
  .bio-box, .archive-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7em;
  }
  .archive-header {
    padding: 1em 0.7em;
  }
  .archive-article-list {
    grid-template-columns: 1fr;
    gap: 1em;
  }
  .archive-article-card-img {
    height: 120px;
  }
  .bio-box-multi {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7em;
  }
  .bio-box-img-multi {
    flex-direction: row;
    gap: 0.5em;
  }
  .bio-box-mobile-top-divider {
    display: block;
    border: none;
    border-top: 1px solid #ececec;
    margin-bottom: 1.1em;
    margin-top: 0.5em;
    width: 100%;
  }
}
@media (min-width: 701px) {
  .bio-box-mobile-top-divider {
    display: none;
  }
}


/* Top Author Posts Shortcode Styles */
.top-author-posts-grid {
  display: grid;
  gap: 1.5em;
  margin: 2em 0;
}
.top-author-posts-cols-2 { grid-template-columns: repeat(2, 1fr); }
.top-author-posts-cols-3 { grid-template-columns: repeat(3, 1fr); }
.top-author-posts-cols-4 { grid-template-columns: repeat(4, 1fr); }
.top-author-posts-cols-5 { grid-template-columns: repeat(5, 1fr); }

.top-author-post-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  overflow: hidden;
  text-align: center;
  padding: 0 0 1em 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.top-author-post-card-img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  margin-bottom: 0.7em;
}
.top-author-post-card-title {
  font-size: 1.08em;
  font-weight: 600;
  margin: 0.5em 0 0 0;
  color: #222;
  text-decoration: none;
  display: block;
}
.top-author-post-card-title:hover {
  color: #3366ff;
}

@media (max-width: 900px) {
  .top-author-posts-cols-4, .top-author-posts-cols-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .top-author-posts-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 500px) {
  .top-author-posts-grid { grid-template-columns: 1fr !important; }
}


/* Feature List Boxes Shortcode Styles */
.feature-list-boxes {
  display: grid;
  gap: 1.5em;
  margin: 2em 0;
}
.feature-list-size-50 { grid-template-columns: 1fr; }
.feature-list-size-100 { grid-template-columns: repeat(2, 1fr); }
.feature-list-size-33 { grid-template-columns: repeat(3, 1fr); }

.feature-list-box {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
  border: 1.5px solid #e5e7eb;
  padding: 1.3em 1.3em 1.3em 1.3em;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  transition: box-shadow 0.18s;
  --feature-list-header-bg: #f3f3f3;
}
.feature-list-box[data-header-bg] {
  --feature-list-header-bg: attr(data-header-bg);
}
.feature-list-box:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
}
.feature-list-header {
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-size: 1.13em;
  font-weight: 700;
  margin-bottom: 0.5em;
  border-radius: 12px 12px 0 0;
  padding-bottom: 0.2em;
  padding-top: 0.2em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  min-height: 44px;
}
.feature-list-header-gradient {
  background: linear-gradient(90deg, rgba(255,255,255,0.85) 0%, rgba(245,245,245,0.95) 100%);
}
.feature-list-header[data-header-bg] {
  background: var(--feature-list-header-bg) !important;
}
.feature-list-header-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  background: #f3f3f3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
}
.feature-list-desc {
  font-size: 1.01em;
  color: #222;
  margin-bottom: 0.7em;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1em 0;
  counter-reset: featurelist;
  max-height: 210px;
  overflow-y: auto;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-size: 1.09em;
  margin-bottom: 0.2em;
  counter-increment: featurelist;
  color: #222;
}
.feature-list li:before {
  content: counter(featurelist);
  display: inline-block;
  width: 1.7em;
  height: 1.7em;
  background: var(--feature-list-header-bg, #f3f3f3);
  color: #555;
  font-weight: 700;
  border-radius: 50%;
  text-align: center;
  line-height: 1.7em;
  margin-right: 0.3em;
  font-size: 1.01em;
  transition: background 0.18s;
}
.feature-list-link {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.feature-list-link:hover {
  color: #3366ff;
}
.feature-list-box-btn {
  display: block;
  width: 100%;
  margin: 0 auto 0 auto;
  padding: 0.85em 0;
  background: var(--feature-list-header-bg, #f7f7f7);
  border: none;
  border-radius: 10px;
  font-size: 1.13em;
  font-weight: 700;
  color: #444;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  letter-spacing: 0.01em;
}
.feature-list-box-btn:hover {
  background: #e5e7eb;
  color: #3366ff;
  box-shadow: 0 2px 8px rgba(51,102,255,0.07);
}
@media (max-width: 900px) {
  .feature-list-size-33 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .feature-list-boxes { grid-template-columns: 1fr !important; }
}

.mobile-cta-banner {
  display: none;
}
@media (max-width: 700px) {
  .mobile-cta-banner {
    display: block;
    position: relative;
    left: 50%;
    right: 50%;
    width: 100vw;
    transform: translateX(-50%);
    padding: 1.2em 0;
    background: #ede5ff;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.09);
    z-index: 1000;
    margin: 0 0 2em 0;
  }
  .mobile-cta-btn {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: 0.9em 2.5em;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.13em;
    background: #7e5fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    border: none;
    outline: none;
    margin: 0;
  }
}
