/**
 * POPUP MODAL STYLES
 * Styling for the popup modal used for "Read More" functionality
 */

/* Popup Modal Styles */
.popup-modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 70%;
  width: 90%;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.close-popup:hover {
  color: #000;
}

.popup-content h2 {
  margin-top: 0;
  color: #333;
}

.popup-content h3 {
  color: #555;
  margin-bottom: 20px;
}

.popup-content p {
  color: #666;
  line-height: 1.6;
}
