

.research-modern .container {
  max-width: 1200px;
}

/* CARD */
.research-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* FLOAT IMAGE */
.research-image-float {
  float: right;
  width: 320px;
  margin-left: 20px;
  margin-bottom: 15px;
}

.research-image-float img {
  width: 100%;
  border-radius: 12px;
}

/* CLEAR FLOAT */
.clearfix {
  clear: both;
}

/* HEADINGS */
.research-card h1,
.research-card h2 {
  color: var(--primary-blue);
  font-size: 20px;
  margin-bottom: 10px;
}

/* TEXT */
.research-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

/* LIST */
.styled-list {
  padding-left: 18px;
}

.styled-list li {
  font-size: 14px;
  margin-bottom: 6px;
}

.styled-list li::marker {
  color: var(--accent-red);
}

/* PROJECT GRID */
.project-card {
  margin-top: 25px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.project-grid a {
  display: block;
  background: var(--primary-blue);
  color: #fff;
  padding: 10px;
  font-size: 13px;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.project-grid a:hover {
  background: var(--accent-red);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .research-image-float {
    float: none;
    width: 100%;
    margin: 0 0 15px 0;
  }

  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .project-grid {
    grid-template-columns: 1fr;
  }
}