/*
Theme Name: HMIP Astra Child
Theme URI: https://rmdslab.com/archive/
Description: Child theme for HMIP - Holistic Memory Intelligence Platform, based on Astra.
Author: RMDS Lab
Author URI: https://rmdslab.com/
Template: astra
Version: 0.1.1
Text Domain: hmip-astra-child
*/

:root {
  --hmip-blue: #17375e;
  --hmip-gold: #c8a55a;
  --hmip-ivory: #fafaf8;
  --hmip-text: #333333;
  --hmip-border: #dddddd;
}

.hmip-project-shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 42px 20px 60px;
}

.hmip-project-kicker {
  color: var(--hmip-gold);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hmip-project-title {
  color: var(--hmip-blue);
  margin: 0 0 14px;
}

.hmip-project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: #666;
  font-size: 0.98rem;
  margin-bottom: 28px;
}

.hmip-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.hmip-card {
  background: #fff;
  border: 1px solid var(--hmip-border);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 5px 18px rgba(23, 55, 94, 0.05);
}

.hmip-card--wide {
  grid-column: 1 / -1;
}

.hmip-card h2 {
  color: var(--hmip-blue);
  font-size: 1.35rem;
  margin-top: 0;
}

.hmip-primary-button,
.hmip-secondary-button {
  display: inline-block;
  border-radius: 5px;
  padding: 11px 18px;
  font-weight: 700;
  text-decoration: none;
}

.hmip-primary-button {
  background: var(--hmip-blue);
  color: #fff !important;
}

.hmip-primary-button:hover,
.hmip-primary-button:focus {
  background: var(--hmip-gold);
  color: var(--hmip-blue) !important;
}

.hmip-disabled-button {
  display: inline-block;
  border-radius: 5px;
  padding: 11px 18px;
  background: #eeeeee;
  color: #777;
  font-weight: 700;
}

.hmip-progress-track {
  height: 10px;
  background: #ececec;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 10px;
}

.hmip-progress-fill {
  height: 100%;
  background: var(--hmip-gold);
}

.hmip-project-footer-link {
  margin-top: 28px;
}

@media (max-width: 760px) {
  .hmip-project-grid {
    grid-template-columns: 1fr;
  }
  .hmip-card--wide {
    grid-column: auto;
  }
}
