

/* CARD */
.anti-card {
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* TITLE */
.anti-title {
  text-align: center;
  color: var(--primary-blue);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 30px;
  position: relative;
}

.anti-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--accent-red);
  display: block;
  margin: 10px auto 0;
}

/* FLOAT IMAGE */
.anti-float {
  float: left;
  width: 300px;
  margin: 0 25px 15px 0;
}

.anti-float img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.anti-float img:hover {
  transform: scale(1.05);
}

/* CONTENT */
.anti-content p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

/* LIST */
.anti-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.anti-list li {
  background: #f9f9f9;
  margin-bottom: 10px;
  padding: 12px 15px;
  border-left: 4px solid var(--primary-blue);
  border-radius: 6px;
  transition: 0.3s;
}

/* LIST HOVER */
.anti-list li:hover {
  background: var(--primary-blue);
  color: #fff;
  transform: translateX(5px);
}

/* BOTTOM IMAGE */
.anti-bottom-img img {
  width: 100%;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* MOBILE FIX */
@media (max-width: 768px) {

  .anti-float {
    float: none;
    width: 100%;
    margin: 0 0 20px 0;
  }

  .anti-title {
    font-size: 24px;
  }

  .anti-card {
    padding: 20px;
  }

}