.elementor-1592 .elementor-element.elementor-element-4c2e5b0{--display:flex;}.elementor-1592 .elementor-element.elementor-element-f23bb8e{width:100%;max-width:100%;}@media(max-width:767px){.elementor-1592 .elementor-element.elementor-element-4c2e5b0{--content-width:500px;--min-height:750px;--margin-top:-0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}}/* Start custom CSS for html, class: .elementor-element-f23bb8e */:root {
  --primary: #8B1A1A;
  --secondary: #6B0F0F;
  --text: #F7F4EE;
  --highlight: #EDE8DC;
  --dark-brown: #2C2416;
  --brown: #5A4D3A;
  --gold: #C9A646;
  --olive: #3A5F0B;

  --white: #FFFFFF;
  --gray-light: #E5E5E5;
  --gray-bg: #F7F7F7;
}

/* בסיס */
body {
  direction: rtl;
  text-align: right;
  background: var(--white);
  color: var(--dark-brown);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

section {
  padding: 80px 0;
}

/* ---------------------- */
/* HERO – תמונת רקע נקייה */
/* ---------------------- */

.hero {
  background-image: url('https://sadafronia.co.il/wp-content/uploads/2026/03/תמונה-לעמוד-מגזין-אירו.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  height: 650px;
  padding: 0;
  text-align: center;
}

.hero .container {
  padding: 0;
}

.hero-title {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.4;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--brown);
  margin-bottom: 24px;
  line-height: 1.7;
}

.hero-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto;
}

/* מובייל – לראות את כל התמונה */
@media (max-width: 768px) {
  .hero {
    height: 520px;
    background-size: contain;
    background-position: center top;
  }

  .hero-title {
    font-size: 28px;
    margin-bottom: 22px;
  }

  .hero-subtitle {
    font-size: 16px;
  }
}

/* ---------------------- */
/* POSTS GRID */
/* ---------------------- */

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 0;
}

@media (max-width: 900px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }
}

.post-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 40px;
}

.post-image {
  height: 260px;
  background-size: cover;
  background-position: center;
}

.post-content {
  padding: 20px;
}

.post-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 22px;
  line-height: 1.5;
  white-space: normal;
  word-break: break-word;
}

.post-meta {
  font-size: 14px;
  color: var(--brown);
  margin-bottom: 12px;
}

.post-excerpt {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--dark-brown);
  line-height: 1.7;
}

.post-button {
  background-color: #c62828 !important;
  color: #ffffff !important;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
}

.post-button:hover {
  background-color: #e53935 !important;
}

/* ---------------------- */
/* TOPICS */
/* ---------------------- */

.topics-section {
  background: var(--gray-bg);
}

.section-title {
  text-align: center;
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 32px;
  line-height: 1.4;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .topics-grid {
    grid-template-columns: 1fr;
  }
}

.topic-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  padding: 20px;
}

.topic-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
}

.topic-text {
  line-height: 1.7;
}

/* ---------------------- */
/* CTA */
/* ---------------------- */

.cta {
  background: var(--highlight);
  text-align: center;
}

.cta-title {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--primary);
  line-height: 1.4;
}

.cta-text {
  font-size: 18px;
  margin-bottom: 24px;
  color: var(--dark-brown);
  line-height: 1.7;
}

.cta-button {
  background-color: #b71c1c !important;
  color: #ffffff !important;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.cta-button:hover {
  background-color: #d32f2f !important;
}
/* תיקון ירידת שורה לכותרות הכרטיסים */
.post-title {
  white-space: normal !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  line-height: 1.4 !important;
}
/* HERO – תיקון סופי למובייל */
@media (max-width: 768px) {
  .hero {
    padding: 0 !important;
    height: 750px !important; /* גובה גדול כדי שהתמונה תיראה מלאה */
    background-size: contain !important;
    background-position: top center !important;
    background-repeat: no-repeat !important;
  }
}
@media (max-width: 568px) {
  .hero + section {
    padding-top: 0 !important;
  }
}
@media (max-width: 768px) {
  .hero {
    height: 320px !important;
    background-size: cover !important;
    background-position: center top !important;
  }
}
.hero {
  background-position: center -20px !important;
}
.post-image-1 {
  background-image: url('https://sadafronia.co.il/wp-content/uploads/2026/03/כוס-יין-לבן-ליד-מנה-קלה.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.post-image-1 {
  height:340px;
}
@media (max-width: 768px) {
  .post-image-1 {
    height: 300px;
  }
}
/* תמונה לכרטיס 2 – תסיסה נכונה */
.post-image-2 {
  background-image: url('https://sadafronia.co.il/wp-content/uploads/2026/03/מיכלי-תסיסה-עם-המיתוג-למאמר.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 340px;
}

@media (max-width: 768px) {
  .post-image-2 {
    height: 340px;
    background-position: center;
  }
}
/* תמונה לכרטיס 3 – אחסון יין בשכיבה */
.post-image-3 {
  background-image: url('https://sadafronia.co.il/wp-content/uploads/2026/03/מרתף-בקבוקי-יין-בשכיבה-למאמר.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 340px;
}

@media (max-width: 768px) {
  .post-image-3 {
    height: 300px;
    background-position: center;
  }
}/* End custom CSS */
/* Start custom CSS */:root {
  --gold: #7A5C3E;
  --gold-light: #E8D8C3;
  --black: #000000;
  --white: #FFFFFF;
  --gray-light: #E5E5E5;
  --gray-bg: #F7F7F7;
}

body {
  direction: rtl;
  text-align: right;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

section {
  padding: 80px 0;
}

/* HERO */
.hero {
  padding: 120px 0;
  text-align: center;
}

.hero-title {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 24px;
}

.hero-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto;
}

/* POSTS GRID */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 900px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }
}

.post-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.post-image {
  height: 240px;
  background-size: cover;
  background-position: center;
}

.post-content {
  padding: 20px;
}

.post-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
}

.post-meta {
  font-size: 14px;
  color: #666;
}

.post-excerpt {
  font-size: 16px;
  margin-bottom: 16px;
}

.post-button {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 8px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.2s;
}

.post-button:hover {
  background: var(--black);
  color: var(--gold);
}

/* TOPICS */
.topics-section {
  background: var(--gray-bg);
}

.section-title {
  text-align: center;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 32px;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .topics-grid {
    grid-template-columns: 1fr;
  }
}

.topic-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  padding: 20px;
}

.topic-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* CTA */
.cta {
  background: var(--gold-light);
  text-align: center;
}

.cta-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.cta-text {
  font-size: 18px;
  margin-bottom: 24px;
}

.cta-button {
  background: var(--black);
  color: var(--white);
  padding: 12px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.2s;
}

.cta-button:hover {
  background: var(--gold);
  color: var(--black);
}/* End custom CSS */