/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 01 2025 | 12:05:13 */
.ia-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  cursor: pointer;
}

.ia-card-content img {
  display: block;
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.ia-card-header {
  background: #00294b;
  padding: 12px;
  color: #fff;
  min-height:100px;
}
.ia-card-header .ia-title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
}

.ia-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
}
.ia-card-footer .ia-subtitle {
  font-size: 14px;
  color: #24A8E0;
}
.ia-card-footer .ia-price {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
.ia-card-footer .ia-price small {
  font-size: 14px;
  color: #666;
  margin-left: 4px;
}

/* Overlay */
.ia-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00294b;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  visibility: hidden;
  transform: translate(0,0);
  pointer-events: none;
  z-index: 2;
}

.ia-overlay h2 {
  margin: 0 0 10px;
  font-size: 22px;
  color: white;
}
.ia-overlay p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.4;
}

.ia-buttons {
  display: flex;
  gap: 10px;
}
.ia-btn {
  border: none;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  background: #fff;
  color: #009688;
  transition: background 0.3s;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 10px 33px;
}
.ia-btn:hover {
  background: #e0f2f1;
}

.ia-summary {
    margin-top: 10px;
}






