.akernel-rent {
  padding: 60px 0;
  background: #f9fdff;
}
.akernel-rent-container {
  width: min(1200px, 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.akernel-rent-panel {
  background: #fff;
  border: 1px solid #e6edf3;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}
.akernel-rent-panel h2 {
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 10px;
  color: #0e2850;
}
.akernel-rent-panel .lead {
  color: #4b6a7b;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.5;
}
.akernel-rent-panel .price {
  font-size: 32px;
  font-weight: 700;
  color: #1796dd;
  margin-bottom: 16px;
}
.akernel-rent-panel .rent-list {
  color: #4b6a7b;
  margin: 0 0 24px 18px;
  padding: 0;
  list-style: disc;
}
.akernel-rent-panel .rent-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn.primary {
  background: #1796dd;
  color: #fff;
  box-shadow: 0 6px 18px rgba(23,150,221,0.3);
}
.btn.primary:hover {
  background: #0f7fbf;
}
.btn.ghost {
  border: 1px solid #1796dd;
  color: #1796dd;
}
.btn.ghost:hover {
  background: #1796dd;
  color: #fff;
}

/* Image block */
.akernel-rent-image {
  background: #fff;
  border: 1px solid #e6edf3;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  padding: 24px;
  text-align: center;
}
.akernel-rent-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 960px) {
  .akernel-rent-container {
    grid-template-columns: 1fr;
  }
  .akernel-rent-panel {
    text-align: center;
  }
  .akernel-rent-panel .rent-list {
    text-align: left;
    display: inline-block;
  }
}
