/* ================================
   Zen Hosting Blog Styles
   ================================ */

:root {
  --font-inter: "Inter", sans-serif;

  /* Font sizes & line heights */
  --fs-16: 16px;
  --lh-20: 20px;
  --lh-24: 24px;
  --ls--0_15: -0.15px;
  --ls--0_31: -0.31px;

  /* Colors */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-slategray: #6b7280;

  /* Gradients & accents */
  --gradient-1: linear-gradient(90deg, #5b2be0 0%, #b937ff 100%);
  --br-4: 4px;

  /* Spacing tokens */
  --padding-0: 0;
  --padding-4: 4px;
  --padding-12: 12px;
  --padding-20: 20px;
  --gap-16: 16px;
  --gap-24: 24px;
  --height-72: 72px;
}

/* ================================
   Base
   ================================ */

body {
  margin: 0;
  font-family: var(--font-inter);
  color: var(--color-black);
  background-color: var(--color-white);
}

.locofy-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

/* ================================
   Section layout
   ================================ */

.locofy-wrapper .section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: var(--gap-24);
}

.locofy-wrapper .section-inner {
  text-align: center;
  padding: 0 20px;
}

.locofy-wrapper .latest-from-our-blog-wrapper {
  margin-bottom: 8px;
}

.locofy-wrapper .latest-from-our {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.locofy-wrapper .stay-informed-with {
  max-width: 720px;
  font-size: var(--fs-16);
  color: var(--color-slategray);
  margin: 0 auto 40px;
}

/* ================================
   Container & cards
   ================================ */

.locofy-wrapper .container {
  display: grid;
  grid-template-columns: repeat(3, minmax(272px, 1fr));
  gap: var(--gap-24);
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.locofy-wrapper .card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--br-4);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.locofy-wrapper .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.locofy-wrapper .card img {
  width: 100%;
  height: auto;
  display: block;
}

.locofy-wrapper .text {
  padding: 20px;
}

.locofy-wrapper .ai-data {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-slategray);
  margin: 0 0 8px;
}

.locofy-wrapper .date {
  font-size: 14px;
  color: var(--color-slategray);
  margin-bottom: 6px;
}

.locofy-wrapper .title {
  font-size: 18px;
  font-weight: 700;
  line-height: var(--lh-24);
  margin: 0 0 10px;
}

.locofy-wrapper .summary {
  font-size: 15px;
  line-height: var(--lh-24);
  color: var(--color-slategray);
  margin: 0 0 16px;
}

.locofy-wrapper .read-more {
  color: #5b2be0;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s;
}

.locofy-wrapper .read-more:hover {
  color: #b937ff;
}

/* ================================
   Button
   ================================ */

.locofy-wrapper .button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.locofy-wrapper .button {
  border: none;
  border-radius: var(--br-4);
  background: var(--gradient-1);
  color: var(--color-white);
  font-family: var(--font-inter);
  font-size: var(--fs-16);
  font-weight: 600;
  padding: 14px 32px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.locofy-wrapper .button:hover {
  opacity: 0.9;
}

/* ================================
   Responsive
   ================================ */

@media screen and (max-width: 1050px) {
  .locofy-wrapper .container {
    grid-template-columns: repeat(2, minmax(272px, 1fr));
  }
}

@media screen and (max-width: 750px) {
  .locofy-wrapper .container {
    grid-template-columns: minmax(272px, 1fr);
  }

  .locofy-wrapper .section-inner {
    padding: 0 12px;
  }

  .locofy-wrapper .button-wrapper {
    margin-top: 20px;
  }
}

@media screen and (max-width: 450px) {
  .locofy-wrapper .latest-from-our {
    font-size: 20px;
  }

  .locofy-wrapper .summary {
    font-size: 14px;
  }
}