/* ==========================================================
   AEGEO.GR – LIFESTYLE
   ----------------------------------------------------------
   DESKTOP: 4 ισότιμες visual κάρτες
   TABLET: 2 × 2
   MOBILE: εικόνα αριστερά + τίτλος που αγκαλιάζει την εικόνα

   ΧΩΡΙΣ CSS CROP
   ========================================================== */


/* ==========================================================
   ΤΙΤΛΟΣ SECTION
   ========================================================== */

h2:has(~ .content .aegeo-lifestyle-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-lifestyle-cards {
  width: 100%;
  max-width: 100%;

  box-sizing: border-box;
}


/* ==========================================================
   DESKTOP – 4 ΚΑΡΤΕΣ
   ========================================================== */

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

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

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

  align-items: start;

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

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

  --bs-gutter-x: 0;
}


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

.aegeo-lifestyle-cards
.view-content
> .views-row {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;

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

  box-sizing: border-box;
}


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

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

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

  box-sizing: border-box;
}


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

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

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

  margin: 0;
  padding: 0;
}


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

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

  height: auto !important;

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

  border-radius: 10px;
}


/* ==========================================================
   ΤΙΤΛΟΣ
   ========================================================== */

.aegeo-lifestyle-cards
.views-field-title {
  min-width: 0;

  margin: 0;
  padding: 0;
}


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

  color: #202020;

  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.3;

  text-decoration: none;
}


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


/* ==========================================================
   TABLET – 2 × 2
   ========================================================== */

@media (max-width: 991px) {

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

    column-gap: 20px;
    row-gap: 22px;
  }
}


/* ==========================================================
   MOBILE
   Εικόνα αριστερά + τίτλος δίπλα και από κάτω
   ========================================================== */

@media (max-width: 768px) {

  .aegeo-lifestyle-cards .view-content {
    display: block !important;

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

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


  /* Κάθε είδηση */

  .aegeo-lifestyle-cards
  .view-content
  > .views-row {
    display: block !important;

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

    margin: 0 !important;
    padding: 12px 0 !important;

    border-bottom: 1px solid #e1e1e1;

    box-sizing: border-box;
  }


  /* Clear του float */

  .aegeo-lifestyle-cards
  .view-content
  > .views-row::after {
    content: "";
    display: block;
    clear: both;
  }


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

  .aegeo-lifestyle-cards
  .views-field-field-image {
    float: left;

    width: 105px;
    max-width: 105px;

    margin:
      0
      11px
      6px
      0 !important;

    padding: 0 !important;
  }


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

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

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


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

    width: 105px !important;
    max-width: 100% !important;

    height: auto !important;

    margin: 0 !important;

    border-radius: 7px;
  }


  /* --------------------------------------------------------
     ΤΙΤΛΟΣ
     -------------------------------------------------------- */

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

    min-width: 0;

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


  .aegeo-lifestyle-cards
  .views-field-title
  .field-content {
    display: inline;

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


  /* Αν υπάρχει ο Drupal title wrapper */

  .aegeo-lifestyle-cards
  .views-field-title
  .field--name-title {
    display: inline;

    position: relative;
    top: -5px;

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


  .aegeo-lifestyle-cards
  .views-field-title a {
    color: #222;

    font-size: 0.90rem !important;
    font-weight: 700 !important;
    line-height: 1.28 !important;

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

    text-decoration: none;
  }


  /* Τελευταία χωρίς γραμμή */

  .aegeo-lifestyle-cards
  .view-content
  > .views-row:last-child {
    border-bottom: 0;
  }
}