/* ============================================= */
/* PROJECTS PAGE STYLES                          */
/* ============================================= */

/* ============================================= */
/* PROJECTS TYPOGRAPHY SYSTEM                    */
/* ============================================= */

/* Ensure all text elements use correct fonts */
.filter-controls,
.filter-header h3,
.filter-subtitle,
.filter-label,
.filter-btn,
.tech-tag,
.search-input,
.search-count,
.active-filter-tag,
.project-card-enhanced,
.project-title,
.project-description,
.tech-pill,
.project-btn,
.no-results h3,
.no-results p,
.clear-filters-btn,
.modal-title,
.modal-body p,
.modal-btn,
.detail-title,
.detail-tech-tag,
.detail-description h3,
.detail-description p,
.detail-features h3,
.detail-features li,
.detail-btn {
  font-family: var(--font-body);
}

/* Headings use Orbitron */
.filter-header h3,
.no-results h3,
.modal-title,
.detail-title,
.detail-description h3,
.detail-features h3,
.project-title {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Filter Controls - Modernized Layout */
.filter-controls {
  padding: 32px;
  margin-bottom: 40px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.filter-header {
  margin-bottom: 28px;
  text-align: center;
}

.filter-header h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--accent-cyan);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.filter-header h3 i {
  font-size: 22px;
}

.filter-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 24px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-label {
  font-size: 13px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Awards Filter - Modernized Awards-style */
.awards-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.filter-btn {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  outline: none;
}

.filter-btn:hover {
  color: var(--accent-cyan);
  border-color: rgba(0, 212, 255, 0.3);
  background: rgba(0, 212, 255, 0.05);
  transform: translateY(-2px);
}

.filter-btn.active {
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.08);
  box-shadow: 0 0 20px var(--glow-cyan);
}

.tech-tag {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.tech-tag:hover {
  color: var(--accent-cyan);
  border-color: rgba(0, 212, 255, 0.3);
  background: rgba(0, 212, 255, 0.05);
  transform: translateY(-2px);
}

.tech-tag.active {
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.08);
  box-shadow: 0 0 20px var(--glow-cyan);
}

/* Search */
.search-group {
  grid-column: span 2;
}

@media (max-width: 900px) {
  .search-group {
    grid-column: span 1;
  }
}

.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-wrapper i {
  position: absolute;
  left: 18px;
  color: var(--text-muted);
  font-size: 18px;
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-input:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
  background: rgba(0, 212, 255, 0.02);
}

.search-count {
  position: absolute;
  right: 18px;
  font-size: 13px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--glass-border);
}

/* Active Filters */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
  min-height: 48px;
}

.active-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 8px;
  color: var(--accent-cyan);
  font-size: 13px;
  font-weight: 500;
}

.active-filter-tag button {
  background: none;
  border: none;
  color: var(--accent-cyan);
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.2s;
}

.active-filter-tag button:hover {
  background: rgba(0, 212, 255, 0.2);
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 0;
  margin-bottom: 40px;
}

/* Filter section spacing fix */
#filter-section.section {
  padding-bottom: 20px; /* Reduced from 100px */
}

/* Projects grid section spacing */
#projects-grid-section.section {
  padding-top: 20px; /* Reduced from 100px */
}

/* Project Card with Enhanced Animations - Cleaned Up */
.project-card-enhanced {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: cardReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  font-family: var(--font-body);
}

@keyframes cardReveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered animation for grid items */
.projects-grid .project-card-enhanced:nth-child(1) {
  animation-delay: 0.1s;
}
.projects-grid .project-card-enhanced:nth-child(2) {
  animation-delay: 0.2s;
}
.projects-grid .project-card-enhanced:nth-child(3) {
  animation-delay: 0.3s;
}
.projects-grid .project-card-enhanced:nth-child(4) {
  animation-delay: 0.4s;
}
.projects-grid .project-card-enhanced:nth-child(5) {
  animation-delay: 0.5s;
}
.projects-grid .project-card-enhanced:nth-child(6) {
  animation-delay: 0.6s;
}
.projects-grid .project-card-enhanced:nth-child(7) {
  animation-delay: 0.7s;
}
.projects-grid .project-card-enhanced:nth-child(8) {
  animation-delay: 0.8s;
}

/* In-progress glow effect */
.project-card-enhanced.in-progress-glow {
  position: relative;
}

.project-card-enhanced.in-progress-glow::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 18px;
  background: linear-gradient(
    45deg,
    rgba(245, 158, 11, 0.3),
    rgba(245, 158, 11, 0.1),
    rgba(245, 158, 11, 0.3)
  );
  z-index: -1;
  animation: inProgressGlow 2s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes inProgressGlow {
  0% {
    opacity: 0.5;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.8);
  }
}

.project-card-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.3),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s;
}

.project-card-enhanced:hover::before {
  opacity: 1;
}

.project-card-enhanced:hover {
  border-color: var(--glass-border-hover);
  box-shadow: 0 4px 24px rgba(0, 212, 255, 0.06);
  transform: translateY(-2px);
}

.project-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.project-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin: 0;
}

.status-badge {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.status-badge.completed {
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.status-badge.in-progress {
  background: rgba(124, 58, 237, 0.1);
  color: var(--accent-violet);
  border: 1px solid rgba(124, 58, 237, 0.2);
}

/* Date Display for Completed Projects */
.project-date-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}

.project-date-item {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-date-item::before {
  content: "📅";
  font-size: 11px;
}

.project-date-label {
  font-weight: 500;
  color: var(--text-secondary);
}

.project-date-value {
  color: var(--text-muted);
}

.project-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.tech-pill {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.project-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--glass-border);
}

.project-btn {
  flex: 1;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.project-btn:hover {
  color: var(--accent-cyan);
  border-color: rgba(0, 212, 255, 0.3);
  background: rgba(0, 212, 255, 0.05);
}

.project-btn.view-details {
  background: rgba(0, 212, 255, 0.08);
  color: var(--accent-cyan);
  border-color: rgba(0, 212, 255, 0.2);
}

.project-btn.view-details:hover {
  background: rgba(0, 212, 255, 0.12);
  box-shadow: 0 0 20px var(--glow-cyan);
}

/* Launch button styling for project cards */
.project-btn.launch-btn {
  background: var(--accent-gradient);
  color: #fff;
  border: none;
}

.project-btn.launch-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
}

/* No Results */
.no-results {
  padding: 60px 40px;
  text-align: center;
  display: none;
}

.no-results i {
  font-size: 48px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.no-results h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.no-results p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.clear-filters-btn {
  padding: 12px 28px;
  background: var(--accent-gradient);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.clear-filters-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
}

/* GitHub Access Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  width: 90%;
  max-width: 500px;
  padding: 20px;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: rotate(90deg);
}

.modal-icon {
  text-align: center;
  margin-bottom: 24px;
}

.modal-icon i {
  font-size: 64px;
  color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.1);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 2px solid rgba(0, 212, 255, 0.2);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 16px;
}

.modal-body {
  text-align: center;
  margin-bottom: 32px;
}

.modal-body p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.modal-btn {
  padding: 14px 28px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  min-width: 120px;
}

.primary-btn {
  background: var(--accent-gradient);
  color: #fff;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
}

.secondary-btn:hover {
  color: var(--accent-cyan);
  border-color: rgba(0, 212, 255, 0.3);
  background: rgba(0, 212, 255, 0.05);
}

/* Modal Types */
.modal-private .modal-icon i {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.2);
}

.modal-in-progress .modal-icon i {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.2);
}

/* Detail Panel */
.detail-panel-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px) saturate(180%);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.detail-panel-overlay.active {
  opacity: 1;
  visibility: visible;
}

.detail-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 600px;
  height: 100%;
  background: var(--bg-secondary);
  border-left: 1px solid var(--glass-border);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.detail-panel.active {
  transform: translateX(0);
}

.detail-panel-header {
  padding: 24px 32px;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 14, 26, 0.8);
  backdrop-filter: blur(20px);
  flex-shrink: 0;
}

.detail-title {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--text-primary);
  margin: 0;
}

.detail-close {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-secondary);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.detail-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: rotate(90deg);
}

.detail-content {
  padding: 32px;
  overflow-y: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.detail-status {
  display: flex;
  align-items: center;
  gap: 12px;
}

.detail-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-tech-tag {
  padding: 8px 16px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 8px;
  color: var(--accent-cyan);
  font-size: 13px;
  font-weight: 500;
}

.detail-description h3,
.detail-features h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--accent-cyan);
  margin-bottom: 12px;
}

.detail-description p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.detail-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-features li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.detail-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: bold;
}

.detail-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
}

.detail-btn {
  padding: 16px 24px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

.launch-btn {
  background: var(--accent-gradient);
  color: #fff;
}

.launch-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
}

.code-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
}

.code-btn:hover {
  color: var(--accent-cyan);
  border-color: rgba(0, 212, 255, 0.3);
  background: rgba(0, 212, 255, 0.05);
}

.back-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
}

.back-btn:hover {
  color: var(--accent-cyan);
  border-color: rgba(0, 212, 255, 0.3);
  background: rgba(0, 212, 255, 0.05);
}

/* Scroll Fix */
body.detail-panel-open {
  overflow: hidden;
}

/* Responsive */
@media (max-width: 900px) {
  .filter-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .detail-panel {
    max-width: 100%;
  }

  .detail-panel-header {
    padding: 20px 24px;
  }

  .detail-content {
    padding: 24px;
  }

  .modal-container {
    width: 95%;
    padding: 10px;
  }

  .modal-content {
    padding: 30px 24px;
  }

  .modal-actions {
    flex-direction: column;
  }

  .modal-btn {
    width: 100%;
  }
}

@media (max-width: 540px) {
  .filter-controls {
    padding: 24px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card-enhanced {
    padding: 24px;
  }

  .detail-actions {
    flex-direction: column;
  }

  .detail-btn {
    width: 100%;
  }

  .modal-icon i {
    width: 80px;
    height: 80px;
    font-size: 48px;
  }

  .modal-title {
    font-size: 20px;
  }

  .modal-body p {
    font-size: 15px;
  }
}

/* Performance Optimizations */
.project-card-enhanced,
.filter-btn,
.tech-tag,
.detail-btn,
.modal-btn {
  will-change: transform, opacity;
  backface-visibility: hidden;
}

/* Filtering Animation */
.project-card-enhanced {
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.project-card-enhanced.filtered-out {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  pointer-events: none;
  position: absolute;
}

/* Smooth filtering transition */
.projects-grid {
  position: relative;
  min-height: 300px;
}
