/* ==================== MODERN INTERVIEW TIPS PAGE ==================== */

/* Main Content */
.main-content {
  padding: 2rem 1rem;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 100vh;
}

/* Page Header */
.page-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #f0f0f0;
}

.breadcrumb-modern {
  background: transparent;
  padding: 0;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.breadcrumb-modern a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.breadcrumb-modern a:hover {
  color: #dc3545;
}

.breadcrumb-modern .active {
  color: #dc3545;
  font-weight: 600;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 0.5rem 0;
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: 1.05rem;
  color: #6c757d;
  margin: 0;
  font-weight: 500;
}

/* Cards Grid */
.row {
  margin-bottom: 2rem;
}

/* Cards */
.card {
  border-radius: 16px;
  border: 2px solid #f0f0f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  overflow: hidden;
  background: #ffffff;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #dc3545 0%, #c82333 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  box-shadow: 0 12px 30px rgba(220, 53, 69, 0.15);
  border-color: #dc3545;
  transform: translateY(-8px);
}

.card:hover::before {
  opacity: 1;
}

.card-body {
  padding: 2rem;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  transition: color 0.3s ease;
}

.card:hover .card-title {
  color: #dc3545;
}

.card-text {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 0.75rem;
  color: #555;
}

/* Icon Circle */
.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.25);
  transition: all 0.3s ease;
  margin-right: 1rem;
}

.card:hover .icon-circle {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.35);
}

.icon-circle i {
  font-size: 1.8rem;
  color: white;
}

/* Responsive */
@media (max-width: 991px) {
  .page-title {
    font-size: 2rem;
  }

  .main-content {
    padding: 1.5rem 1rem;
  }

  .card-body {
    padding: 1.5rem;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
  }

  .icon-circle i {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .page-title {
    font-size: 1.75rem;
  }

  .page-subtitle {
    font-size: 0.95rem;
  }

  .main-content {
    padding: 1rem 0.75rem;
  }

  .page-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .card-body {
    padding: 1.25rem;
  }

  .icon-circle {
    width: 55px;
    height: 55px;
    margin-right: 0.75rem;
  }

  .icon-circle i {
    font-size: 1.25rem;
  }

  .card-title {
    font-size: 1rem;
  }

  .card-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}
