/* Extracted styles from index.html */
/* Basic grid for interviews */
.interview-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  padding: 20px 0;
}
.interview-card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
  display: flex;
  flex-direction: column;
  margin-top: 0;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.interview-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  border-color: #ccc;
}
.interview-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.interview-card-img {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  background: #f0f0f0;
}
.interview-card-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.interview-card:hover .interview-card-img img {
  transform: scale(1.05);
}
.interview-card-tags {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 10px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}
.interview-tag {
  background: #0090ec;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1;
}
.interview-card-content {
  padding: 24px; /* Increased padding slightly */
  font-size: 16px; /* Increased from 14px */
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.interview-card-title {
  font-size: 20px; /* Increased from 18px */
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.5;
  color: #222;
}
.interview-card-company {
    font-weight: bold;
    font-size: 14px; /* Increased from 13px */
    color: #2389ca;
    margin-bottom: 4px;
}
.interview-card-industry {
    font-size: 13px; /* Increased from 12px */
    color: #888;
    margin-bottom: 16px;
    display: inline-block;
    background-color: #f7f7f7;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Sections */
.interview-card-section {
    margin-top: 16px;
    border-top: 1px dashed #eee;
    padding-top: 12px;
}
.interview-card-section:first-of-type {
    border-top: none;
    padding-top: 0;
}

.interview-card-label {
    display: block;
    font-size: 14px; /* Increased from 12px */
    font-weight: 700;
    color: #555;
    margin-bottom: 8px;
    line-height: 1;
}

/* General list styles */
.interview-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.interview-card-list li {
    font-size: 15px; /* Increased from 13px */
    line-height: 1.2;
    color: #555;
    margin-bottom: 8px;
}

/* Specific Style: Solved Issues (Tag style) */
.solved-issues-section .interview-card-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.solved-issues-section .interview-card-list li {
    padding: 6px;
    background-color: #f0f9fb;
    color: #006680;
    border-radius: 4px;
    font-size: 14px; /* Increased from 12px */
    font-weight: bold;
    border: 1px solid #dcf2f7;
    margin: 0;
}
.solved-issues-section .interview-card-list li::before {
    content: none;
}

/* Specific Style: Achievements & Utilized Features (List style) */
.achievements-section .interview-card-list li,
.utilized-features-section .interview-card-list li {
    position: relative;
    padding-left: 16px; /* Adjusted padding */
}
.achievements-section .interview-card-list li::before,
.utilized-features-section .interview-card-list li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: #00abd6;
    font-weight: bold;
    font-size: 13px; /* Increased from 11px */
    top: 3px;
}

/* Hide sections per request */
.achievements-section,
.utilized-features-section {
  display: none;
}
