/* extra.css - Extra page specific styles */

/* Thumbnail styling */
.extra-card-thumbnail {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 16px;
}

.extra-card-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.summary-card:hover .extra-card-thumbnail img {
  transform: scale(1.05);
}

.extra-card-description {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px 0;
}

.extra-card-description p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.feature-item i,
.feature-item svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--primary-color, #30a2ff);
  border-radius: 8px;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.cta-button i,
.cta-button svg {
  width: 18px;
  height: 18px;
}

.summary-card:hover .cta-button {
  transform: translateX(5px);
  background: var(--accent-color, #1b8ce6);
  box-shadow: 0 4px 12px rgba(48, 162, 255, 0.4);
}

.info-section h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.info-section h4 i,
.info-section h4 svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.info-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .summary-grid {
    grid-template-columns: 1fr;
  }
  
  .extra-card-thumbnail {
    height: 234px;
  }
}
