/**
 * Craftique Pattern & Single Post Stylesheet
 * Custom styles for craft & crochet patterns, stitch glossaries, spec cards, and sidebar
 */

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */
.cq-breadcrumbs {
  font-size: 13px;
  color: var(--cq-text-light);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.cq-breadcrumbs a {
  color: var(--cq-text-muted);
  text-decoration: none;
  font-weight: 600;
}

.cq-breadcrumbs a:hover {
  color: var(--cq-coral);
}

.cq-bc-sep {
  color: var(--cq-border-subtle);
}

.cq-bc-current {
  color: var(--cq-dark);
  font-weight: 600;
  max-width: 320px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================================================
   2-COLUMN SINGLE LAYOUT (MAIN ARTICLE + SIDEBAR)
   ========================================================================== */
.cq-single-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.cq-primary-content {
  min-width: 0; /* Prevents overflow inside CSS grid */
}

.cq-secondary-content {
  position: sticky;
  top: 90px;
}

/* ==========================================================================
   SINGLE ARTICLE HEADER & META
   ========================================================================== */
.cq-single-article {
  padding-bottom: 40px;
}

.cq-article-header {
  text-align: left;
  margin-bottom: 28px;
}

.cq-article-category {
  display: inline-block;
  background-color: var(--cq-coral-soft);
  color: var(--cq-coral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--cq-radius-pill);
  margin-bottom: 14px;
  border: 1px solid var(--cq-peach-border);
}

.cq-article-title {
  font-size: 36px;
  line-height: 1.22;
  color: var(--cq-dark);
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.cq-article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cq-text-muted);
  font-size: 13.5px;
  flex-wrap: wrap;
}

.cq-article-meta a {
  color: var(--cq-dark);
  font-weight: 700;
}

.cq-article-meta a:hover {
  color: var(--cq-coral);
}

.cq-article-meta-sep {
  color: var(--cq-border-subtle);
}

/* Social Share Bar */
.cq-share-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 28px;
  flex-wrap: wrap;
}

.cq-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--cq-radius-pill);
  font-family: var(--cq-font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--cq-transition);
  box-shadow: var(--cq-shadow-subtle);
}

.cq-share-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.cq-share-facebook {
  background-color: #1877f2;
}

.cq-share-facebook:hover {
  background-color: #0d65d9;
  transform: translateY(-2px);
  color: #fff;
}

.cq-share-pinterest {
  background-color: #cb2027;
}

.cq-share-pinterest:hover {
  background-color: #a8161c;
  transform: translateY(-2px);
  color: #fff;
}

.cq-share-print {
  background-color: var(--cq-dark);
}

.cq-share-print:hover {
  background-color: var(--cq-coral);
  transform: translateY(-2px);
  color: #fff;
}

/* Featured Media & Pinterest Pin Overlay */
.cq-article-featured {
  margin-bottom: 34px;
  border-radius: var(--cq-radius-xl);
  overflow: hidden;
  box-shadow: var(--cq-shadow-card);
  border: 1px solid var(--cq-peach-border);
}

.cq-pin-overlay-wrap {
  position: relative;
  overflow: hidden;
}

.cq-pin-overlay-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.cq-pin-overlay-wrap:hover img {
  transform: scale(1.02);
}

.cq-pin-floating-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #cb2027;
  color: #fff;
  border-radius: var(--cq-radius-pill);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  opacity: 0.95;
  transition: var(--cq-transition);
  z-index: 5;
}

.cq-pin-floating-btn svg {
  width: 14px;
  height: 14px;
  fill: #fff;
}

.cq-pin-floating-btn:hover {
  background: #a8161c;
  transform: scale(1.05);
  color: #fff;
}

/* ==========================================================================
   CROCHET PATTERN SPECIFICATION CARD
   ========================================================================== */
.cq-pattern-card {
  background: var(--cq-bg-white);
  border: 2px solid var(--cq-peach-border);
  border-radius: var(--cq-radius-xl);
  padding: 28px;
  margin: 30px 0 40px;
  box-shadow: var(--cq-shadow-card);
  position: relative;
}

.cq-pattern-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--cq-border-light);
  padding-bottom: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.cq-pattern-card-title {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  color: var(--cq-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cq-pattern-card-title svg {
  width: 20px;
  height: 20px;
  fill: var(--cq-coral);
}

.cq-badge-difficulty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--cq-radius-pill);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cq-badge-difficulty.easy,
.cq-badge-difficulty.beginner {
  background-color: var(--cq-sage);
  color: #2b5624;
}

.cq-badge-difficulty.intermediate {
  background-color: #fff3cd;
  color: #856404;
}

.cq-badge-difficulty.advanced {
  background-color: #f8d7da;
  color: #721c24;
}

.cq-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.cq-spec-item {
  background: var(--cq-coral-soft);
  padding: 14px;
  border-radius: var(--cq-radius-md);
  border: 1px solid var(--cq-peach-border);
}

.cq-spec-label {
  display: block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cq-coral);
  margin-bottom: 3px;
}

.cq-spec-val {
  font-family: var(--cq-font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--cq-dark);
}

.cq-designer-notice {
  background: var(--cq-bg-cream);
  border-radius: var(--cq-radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--cq-text-muted);
  border: 1px dashed var(--cq-peach-border);
}

.cq-designer-notice a {
  color: var(--cq-coral);
  font-weight: 700;
  text-decoration: underline;
}

/* Interactive Materials Checklist */
.cq-materials-box {
  background: #fbfbf9;
  border-radius: var(--cq-radius-lg);
  padding: 24px;
  margin: 24px 0;
  border: 1px solid var(--cq-border-light);
}

.cq-materials-box h3 {
  margin-top: 0;
  font-size: 18px;
  color: var(--cq-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cq-materials-hint {
  font-size: 11px;
  color: var(--cq-text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cq-checklist {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}

.cq-checklist li {
  position: relative;
  padding: 8px 0 8px 30px;
  font-size: 15.5px;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.cq-checklist li:last-child {
  border-bottom: none;
}

.cq-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 17px;
  height: 17px;
  border-radius: 4px;
  border: 2px solid var(--cq-coral);
  background: #fff;
  transition: all 0.2s ease;
}

.cq-checklist li.checked {
  color: var(--cq-text-light);
  text-decoration: line-through;
}

.cq-checklist li.checked::before {
  background: var(--cq-coral);
  border-color: var(--cq-coral);
}

.cq-checklist li.checked::after {
  content: "✓";
  position: absolute;
  left: 3.5px;
  top: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
}

/* ==========================================================================
   ENTRY CONTENT (PATTERN BODY)
   ========================================================================== */
.cq-entry-content {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--cq-text-main);
}

.cq-entry-content p {
  margin-bottom: 1.4rem;
}

.cq-entry-content h2,
.cq-entry-content h3 {
  color: var(--cq-dark);
  font-weight: 700;
  margin: 36px 0 16px;
}

.cq-entry-content h3 {
  font-size: 21px;
}

.cq-entry-content figure {
  margin: 30px 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--cq-radius-lg);
}

.cq-entry-content figure img {
  width: 100%;
  height: auto;
  border-radius: var(--cq-radius-lg);
}

/* ==========================================================================
   POST NAVIGATION WITH THUMBNAILS (PREV / NEXT)
   ========================================================================== */
.cq-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 40px 0;
  padding-top: 24px;
  border-top: 1px solid var(--cq-border-light);
}

.cq-nav-card {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 14px;
  background: var(--cq-bg-white);
  border-radius: var(--cq-radius-md);
  border: 1px solid var(--cq-border-light);
  transition: var(--cq-transition);
}

.cq-nav-card:hover {
  border-color: var(--cq-coral);
  box-shadow: var(--cq-shadow-subtle);
  transform: translateY(-2px);
}

.cq-nav-card.next {
  justify-content: flex-end;
}

.cq-nav-card-thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--cq-radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cq-coral-soft);
}

.cq-nav-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cq-nav-card-text {
  display: flex;
  flex-direction: column;
}

.cq-nav-card-label {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--cq-coral);
  font-weight: 800;
  margin-bottom: 3px;
}

.cq-nav-card-title {
  font-family: var(--cq-font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--cq-dark);
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==========================================================================
   BUNNYPATTERNS SIDEBAR & WIDGET STYLES
   ========================================================================== */
.bp-sidebar {
  --bp-coral:      #ee7c7c;
  --bp-coral-dark: #e26565;
  --bp-blush:      #fdf0ee;
  --bp-blush-deep: #fbe4e2;
  --bp-ink:        #2f2f3a;
  --bp-ink-soft:   #6b6b78;
  --bp-white:      #ffffff;
  --bp-radius:     22px;

  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.bp-card {
  background: var(--bp-white);
  border: 1px solid var(--bp-blush-deep);
  border-radius: var(--bp-radius);
  padding: 24px 22px;
  box-shadow: 0 10px 30px rgba(238, 124, 124, 0.08);
}

.bp-widget-title {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  color: var(--bp-ink);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 12px;
}

.bp-widget-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 44px;
  height: 3px;
  border-radius: 3px;
  background: var(--bp-coral);
}

/* About Card */
.bp-about {
  text-align: center;
}

.bp-about-photo {
  display: block;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bp-blush);
}

.bp-about-text {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--bp-ink-soft);
}

.bp-about-text strong {
  color: var(--bp-ink);
  font-weight: 700;
}

.bp-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 28px;
  border-radius: 999px;
  background: var(--bp-coral);
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 8px 18px rgba(238, 124, 124, 0.35);
}

.bp-btn:hover {
  background: var(--bp-coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(238, 124, 124, 0.4);
}

/* Search Form Widget */
.bp-search-form {
  display: flex;
  background: var(--bp-blush);
  border: 1px solid var(--bp-blush-deep);
  border-radius: 999px;
  overflow: hidden;
  padding: 3px;
}

.bp-search-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 10px 16px;
  font-size: 13.5px;
  color: var(--bp-ink);
  outline: none;
}

.bp-search-form input::placeholder {
  color: #b9a8a6;
}

.bp-search-form button {
  border: 0;
  cursor: pointer;
  background: var(--bp-coral);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 18px;
  border-radius: 999px;
  transition: background 0.25s ease;
}

.bp-search-form button:hover {
  background: var(--bp-coral-dark);
}

/* Category List Widget */
.bp-cats {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bp-cats li + li {
  border-top: 1px dashed var(--bp-blush-deep);
}

.bp-cats a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--bp-ink);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.bp-cats a:hover {
  color: var(--bp-coral);
  padding-left: 8px;
}

.bp-cats .bp-count {
  font-size: 12px;
  font-weight: 700;
  color: var(--bp-coral);
}

/* Newsletter Signup Widget */
.bpnl-card {
  font-family: inherit;
  background: linear-gradient(160deg, #fdf0ee 0%, #fbe4e2 100%);
  border-radius: 22px;
  padding: 26px 22px;
  text-align: center;
  color: #2f2f3a;
  border: 1px solid #fbe4e2;
}

.bpnl-emoji {
  font-size: 28px;
  display: block;
  margin-bottom: 6px;
}

.bpnl-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--cq-dark);
}

.bpnl-text {
  font-size: 13px;
  color: #6b6b78;
  line-height: 1.5;
  margin-bottom: 14px;
}

.bpnl-input {
  width: 100%;
  border: 1px solid #fbe4e2;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13.5px;
  background: #fff;
  color: #2f2f3a;
  margin-bottom: 10px;
  box-sizing: border-box;
}

.bpnl-input:focus {
  outline: 2px solid #ee7c7c;
  border-color: transparent;
}

.bpnl-btn {
  display: inline-block;
  width: 100%;
  border: 0;
  cursor: pointer;
  padding: 10px 24px;
  border-radius: 999px;
  background: #ee7c7c;
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s ease;
  box-shadow: 0 8px 18px rgba(238, 124, 124, 0.35);
}

.bpnl-btn:hover {
  background: #e26565;
  transform: translateY(-2px);
}

/* Popular Feed Widget */
.bp-recent-feed {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bp-feed-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.bp-feed-item:hover {
  transform: translateX(4px);
}

.bp-feed-thumb {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cq-coral-soft);
}

.bp-feed-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bp-feed-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: var(--cq-peach);
}

.bp-feed-info {
  display: flex;
  flex-direction: column;
}

.bp-feed-cat {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cq-coral);
  margin-bottom: 2px;
}

.bp-feed-title {
  margin: 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--cq-dark);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.bp-feed-item:hover .bp-feed-title {
  color: var(--cq-coral);
}

/* ==========================================================================
   RELATED PATTERNS SHELF
   ========================================================================== */
.cq-related-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--cq-peach-border);
}

/* ==========================================================================
   COMMENTS & MAKER NOTES SECTION
   ========================================================================== */
.cq-comments-area,
.comments-area {
  margin-top: 50px;
  padding-top: 36px;
  border-top: 1px solid var(--cq-peach-border);
}

.cq-comments-title {
  font-size: 24px;
  color: var(--cq-dark);
  font-weight: 800;
  margin-bottom: 24px;
}

.cq-comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.cq-comment-list li.comment {
  background: #fbfbf9;
  border-radius: var(--cq-radius-lg);
  padding: 24px;
  margin-bottom: 20px;
  border: 1px solid var(--cq-border-light);
}

.cq-comment-respond-card,
.comment-respond {
  background: #fff;
  border: 1.5px solid var(--cq-peach-border);
  border-radius: var(--cq-radius-xl);
  padding: 36px 32px;
  box-shadow: var(--cq-shadow-card);
  margin-top: 24px;
}

.cq-comment-reply-title,
.comment-reply-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--cq-dark);
  margin: 0 0 8px;
  font-family: var(--cq-font-heading);
}

.cq-comment-notes,
.comment-notes {
  color: var(--cq-text-muted);
  font-size: 14.5px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.cq-comment-form,
#commentform {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cq-form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .cq-form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.cq-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cq-form-label,
#commentform label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--cq-dark);
  margin-bottom: 4px;
  display: block;
}

.cq-form-label .required,
#commentform .required {
  color: var(--cq-coral);
  font-weight: 800;
}

.cq-form-input,
.cq-form-textarea,
#commentform input[type="text"],
#commentform input[type="email"],
#commentform input[type="url"],
#commentform textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 14.5px;
  font-family: var(--cq-font-body);
  color: var(--cq-text-main);
  background: #fbfbf9;
  border: 1.5px solid var(--cq-border-light);
  border-radius: 12px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-sizing: border-box;
}

.cq-form-input:focus,
.cq-form-textarea:focus,
#commentform input[type="text"]:focus,
#commentform input[type="email"]:focus,
#commentform input[type="url"]:focus,
#commentform textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--cq-coral);
  box-shadow: 0 0 0 3px rgba(242, 126, 115, 0.18);
}

.cq-form-textarea,
#commentform textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}

.cq-form-group--cookies,
.comment-form-cookies-consent {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
}

.cq-form-group--cookies input[type="checkbox"],
.comment-form-cookies-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--cq-coral);
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
}

.cq-form-group--cookies label,
.comment-form-cookies-consent label {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--cq-text-muted);
  cursor: pointer;
  margin: 0 !important;
  line-height: 1.4;
}

.form-submit {
  margin-top: 10px;
  margin-bottom: 0;
}

.cq-comment-submit-btn,
#commentform input[type="submit"],
#commentform button[type="submit"] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  background-color: var(--cq-coral);
  color: #fff;
  font-family: var(--cq-font-heading);
  font-size: 14.5px;
  font-weight: 800;
  padding: 13px 34px;
  border-radius: var(--cq-radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--cq-transition);
  box-shadow: var(--cq-shadow-subtle);
}

.cq-comment-submit-btn:hover,
#commentform input[type="submit"]:hover,
#commentform button[type="submit"]:hover {
  background-color: #e2675c;
  transform: translateY(-2px);
  box-shadow: var(--cq-shadow-card);
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 980px) {
  .cq-single-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .cq-secondary-content {
    position: static;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .cq-share-bar {
    display: flex;
    width: 100%;
    gap: 10px;
    margin: 18px 0 24px;
    flex-wrap: nowrap;
  }
  .cq-share-bar .cq-share-btn {
    flex: 1 1 50%;
    justify-content: center;
    padding: 11px 12px;
    font-size: 13.5px;
    text-align: center;
  }
  .cq-share-bar .cq-share-print {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .cq-article-title {
    font-size: 26px;
  }
  .cq-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cq-pattern-card {
    padding: 20px;
  }
  .cq-post-nav {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 440px) {
  .cq-specs-grid {
    grid-template-columns: 1fr;
  }
}

