/* Resources Page Specific Styles */
.resources .nav-item {
  border-bottom: 4px solid #1db4b7;
}

/* Resource Cards */
.resource-card {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
  padding: 0;
}

.resource-card img {
  width: 155px;
  max-width: 155px;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
}

.resource-content {
  flex: 1;
}

.resource-content h3 {
  font-weight: 800;
  margin-bottom: 8px;
}

/* Webinar Section */
.webinar-section {
  padding: 60px 0;
}

.webinar-showcase {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 50px;
  background-color: #ffffff;
  border: 1px solid #46AB46;
  border-bottom: 15px solid #46AB46;
  border-radius: 40px 40px 0 40px;
  max-width: 1088px;
  margin: 0 auto;
}

.webinar-image {
  width: 330px;
  height: 316px;
  object-fit: cover;
  flex-shrink: 0;
}

.webinar-content {
  flex: 1;
}

.webinar-content h2 {
  margin-bottom: 12px;
}

.webinar-content p {
  margin-bottom: 12px;
}

.webinar-content p:last-of-type {
  margin-bottom: 20px;
}

/* Starter Kit Section */
.starter-kit-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.starter-kit-content {
  flex: 1;
}

.starter-kit-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.starter-kit-list li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.starter-kit-list li:before {
  content: "•";
  color: #46AB46;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.inline-link {
  color: #146314;
  text-decoration: underline;
}

.inline-link:hover {
  color: #46AB46;
}

.starter-kit-image {
  flex: 0 0 40%;
}

.starter-kit-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Responsive Design for Resources */
@media (max-width: 768px) {
  .resource-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .resource-card img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto;
  }
  
  .webinar-showcase {
    flex-direction: column;
    padding: 30px;
    text-align: center;
  }
  
  .webinar-image {
    width: 100%;
    max-width: 250px;
    height: auto;
  }
  
  .starter-kit-layout {
    flex-direction: column;
  }
  
  .starter-kit-image {
    flex: none;
    text-align: center;
  }
}