/* ==========================================================
   AEGEO.GR – ΥΓΕΙΑ
   3 μεγάλες κάρτες σε full-width section
   ΧΩΡΙΣ CSS CROP
   ========================================================== */


/* ==========================================================
   ΤΙΤΛΟΣ SECTION
   ίδιος με ΚΟΣΜΟΣ / ΕΛΛΗΝΟΤΟΥΡΚΙΚΑ
   ========================================================== */

h2:has(~ .content .aegeo-health-cards) {
  margin: 0 0 14px 0 !important;
  padding: 2px 0 2px 10px !important;

  border-left: 4px solid #c40000 !important;

  color: #111 !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;

  text-transform: uppercase !important;
  letter-spacing: 0 !important;
}


/* ==========================================================
   VIEW
   ========================================================== */

.aegeo-health-cards {
  width: 100%;
  box-sizing: border-box;
}


/* ==========================================================
   3 ΚΑΡΤΕΣ
   ========================================================== */

.aegeo-health-cards .view-content {
  display: grid !important;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  column-gap: 24px;
  row-gap: 24px;

  width: 100% !important;

  margin: 0 !important;
  padding: 0 !important;

  --bs-gutter-x: 0;
}


/* ==========================================================
   ΚΑΘΕ ΕΙΔΗΣΗ
   ========================================================== */

.aegeo-health-cards
.view-content
> .views-row {
  display: block;

  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;

  margin: 0 !important;
  padding: 0 !important;

  box-sizing: border-box;
}


/* ==========================================================
   ΕΙΚΟΝΑ
   ========================================================== */

.aegeo-health-cards
.views-field-field-image {
  width: 100%;

  margin: 0 0 9px 0;
  padding: 0;
}


.aegeo-health-cards
.views-field-field-image
.field-content,

.aegeo-health-cards
.views-field-field-image a {
  display: block;

  width: 100%;
  max-width: 100%;
}


.aegeo-health-cards
.views-field-field-image img {
  display: block;

  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;

  margin: 0;
  padding: 0;

  border-radius: 8px;
}


/* ==========================================================
   ΤΙΤΛΟΣ ΕΙΔΗΣΗΣ
   ========================================================== */

.aegeo-health-cards
.views-field-title {
  margin: 0;
  padding: 0;
}


.aegeo-health-cards
.views-field-title a {
  display: block;

  color: #202020;

  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.3;

  text-decoration: none;
}


.aegeo-health-cards
.views-field-title a:hover {
  color: #b30000;
}


/* ==========================================================
   TABLET
   2 ΚΑΡΤΕΣ
   ========================================================== */

@media (max-width: 991px) {

  .aegeo-health-cards .view-content {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 22px;
  }
}


/* ==========================================================
   MOBILE
   1 ΚΑΡΤΑ
   ========================================================== */

@media (max-width: 600px) {

  .aegeo-health-cards .view-content {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .aegeo-health-cards
  .views-field-title a {
    font-size: 0.94rem;
  }
}