/** Shopify CDN: Minification failed

Line 172:1 Expected "}" to go with "{"

**/
/* DIGITAL GUIDES - 2 COLUMN LAYOUT */

.digital-guides-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1050px;
  margin: 0 auto;
}

.digital-guide-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: #fff;
  border: 1px solid #e3e8ee;
  border-left: 5px solid #2f80ed;
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
  box-sizing: border-box;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.card-icon {
  background: #f0f4f9;
  border-radius: 10px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-icon svg { 
  width: 27px; 
  height: 27px; 
}
.book-icon svg {
  stroke: #d17b00; /* earthy orange for courses */
  fill: none;
}
.course-icon svg {
  stroke: #000;   /* black outline */
  stroke-width: 2.2;
}

.courses-card {
  grid-column: span 2; /* stretches across both columns */
}


.platform-icon svg {
  stroke: #000; /* teal for platforms */
}

.career-icon svg {
  stroke: #000; /* purple for career roadmap */
}

.switch-icon svg {
  stroke: #000; /* green for career switch */
}

.workflow-icon svg {
  stroke: #000; /* orange for workflow */
}

.growth-icon svg {
  stroke: #000; /* blue for growth */
}

.workspace-icon svg {
  stroke: #000; /* brown for workspace */
}


.digital-guide-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #405a75;
}

.digital-guide-card p {
  margin: 0 0 20px 0;
  font-size: 15px;
  line-height: 1.55;
  color: #596575;
  flex-grow: 1;
}

.digital-guide-card a {
  display: inline-block;
  align-self: flex-start;
  text-align: center;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  box-sizing: border-box;
}

/* MOBILE */

/* MOBILE */

@media screen and (max-width: 749px) {

  .digital-guides-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .digital-guide-card,
  .courses-card {
    grid-column: 1;
    width: 100%;
    padding: 20px;
  }

  .digital-guide-card a {
    width: 100%;
  }
  .courses-card {
  grid-column: 1;
}
.card-icon,
.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin-right: 6px;
}

.card-icon svg,
.section-icon svg {
  display: block;
}
.seasonal-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}

/* Side Icons Sizing */
.seasonal-icons .feature-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* Center Ganesha Icon - Prominent Sizing */
.seasonal-icons .ganesha-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}