
.placement-section h2 {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}


.placement-section {
  padding: 16px 33px 37px 33px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(235, 147, 10, 0.15);
  border-radius: 20px;
  color: #fff;
  margin: 0 auto;
  box-shadow: 0 0 40px #00000044;
  margin-bottom: 40px;
}

.placement-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
}

.placement-buttons {
  display: flex;
  gap: 10px;
}

.btn {
    display: flex;
    gap: 12px;
    align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 8px;
  height: 44px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.btn-telegram,
.btn-mail,
.btn-add {
  position: relative;
  align-items: center; 
  background: linear-gradient(to top, #8C4720 0%, #F2B337 82%);
  color: white;
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
}


.btn-telegram::before,
.btn-mail::before,
.btn-add::before {
  content: '';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
}


.btn-telegram::before {
  background-image: url('../img/icons/icon-telegram.svg'); 
}


.btn-mail::before {
  background-image: url('../img/icons/icon-mail.svg');
}


.btn-add::before {
  background-image: url('../img/icons/icon-server.svg');
}

.placement-divider {
  border: none;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}

.placement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(482px, 1fr));
  gap: 20px;
}

.placement-card {
    display: flex;
    justify-content: space-between;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  padding: 20px;
  position: relative;
  box-shadow: 0 0 20px #00000033;
}

.placement-card h3 {
    font-size: 22px;
    font-weight: 600;
  margin-top: 0;
  margin-bottom: 12px;
}

.placement-card p {
    font-size: 12px;
    opacity: 0.4;
    margin-bottom: 11px;
}

.status {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  padding: 4px 12px;
  border-radius: 8px;
  width: 65px;
  height: 30px;
  font-size: 10px;
  font-weight: bold;
}

.status-busy {
  background: rgba(214, 5, 5, 0.3);
  color: #BB0000;
}

.status-free {
    width: 82px;
  background: rgba(71, 214, 5, 0.3);
  color: #3EBB00;
}

.free-dates {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: end;
  font-size: 12px;
  opacity: 0.4;
  margin-top: 8px;
}


@media (max-width: 1024px) {
  .placement-section {
    padding: 20px;
    border-radius: 16px;
  }

  .placement-section h2 {
    font-size: 18px;
    text-align: center;
  }

  .placement-header {
    align-items: center;
    text-align: center;
  }

  .placement-buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
  }

  .btn {
    font-size: 14px;
    height: 40px;
    padding: 6px 14px;
  }

  .placement-grid {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  }

  .placement-card h3 {
    font-size: 20px;
  }

  .placement-card p,
  .free-dates {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .placement-grid {
    grid-template-columns: 1fr;
  }

  .placement-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .placement-card h3 {
    font-size: 18px;
  }

  .placement-card p {
    font-size: 12px;
  }

  .status {
    width: auto;
    height: auto;
    padding: 6px 10px;
    font-size: 11px;
  }

  .free-dates {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .placement-section {
    padding: 16px 12px;
  }

  .placement-section h2 {
    font-size: 16px;
  }

  .btn {
    font-size: 13px;
    padding: 6px 12px;
    height: 36px;
  }

  .btn-telegram::before,
  .btn-mail::before,
  .btn-add::before {
    width: 14px;
    height: 14px;
    left: 10px;
  }

  .placement-card {
    padding: 16px;
  }

  .placement-card h3 {
    font-size: 16px;
  }

  .placement-card p,
  .free-dates {
    font-size: 11px;
  }
}

