.horoscope-section {
    max-width: 1320px;
    margin: 34px auto;
    padding: 0 20px;
    /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
    /*color: #e65085;*/
}

.horoscope-top-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 25px;
}

.horoscope-toolbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 14px;
}

.language-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-form label {
    font-weight: 600;
    color: #3a3a3a;
}

.language-form select {
    min-width: 170px;
    border: 1px solid #e65085;
    border-radius: 8px;
    padding: 8px 10px;
    background: #fff;
}

.small-box {
    flex: 1;
    max-width: 560px;
    background: #f0f0f0;
    color: #555;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 18px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    user-select: none;
    box-shadow: 0 2px 5px rgb(0 0 0 / 0.1);
    transition: all 0.3s ease;
}

.small-box.active {
    background: #e65085;
    color: white;

    transform: scale(1.05);
}

/*    .small-box:hover:not(.active) {
        background: #e65085;
        color: #ff6f61;
    }*/

.horoscope-header {
    text-align: center;
    margin-bottom: 24px;
}

.sign-title {
    font-size: 2.9rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #e65085;
}

.date-range {
    font-size: 1.2rem;
    font-weight: 500;
    color: #666;
}

/* 2 per line grid */
.horoscope-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    
}

.horoscope-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.3fr) minmax(310px, 1fr);
    gap: 24px;
    align-items: start;
    margin-bottom: 24px;
}

.horoscope-main {
    min-width: 0;
}

.horoscope-side {
    min-width: 0;
}

.day-switch {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.day-pill {
    border: 1px solid #e9a3c0;
    background: #fff5fa;
    color: #9c2c5c;
    border-radius: 10px;
    padding: 11px 14px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.2s ease;
}

.day-pill small {
    font-weight: 500;
    font-size: 0.75rem;
    color: #5f5f5f;
}

.day-pill.active {
    background: #e65085;
    border-color: #e65085;
    color: #fff;
}

.day-pill.active small {
    color: #ffe8f1;
}

.horoscope-box {
    /*background: #fff8f4;*/
    border: 2px solid #e65085;
    border-radius: 15px;
    padding: 24px;
    box-shadow: 0 6px 15px rgb(245 154 60 / 0.2);
    transition: transform 0.3s ease;
}

.horoscope-box h2 {
    font-size: 1.45rem;
    margin-bottom: 12px;
    color: #ff6f61;
}

.horoscope-box p {
    font-size: 1.04rem;
    line-height: 1.72;
    color: #444;
}

.back-button {
    display: inline-block;
    background: #e65085;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    user-select: none;
}

.horoscope-prashna-wrap {
    margin: 12px 0 26px;
}

.horoscope-related-links {
    border: 1px solid #efc4d5;
    border-radius: 16px;
    padding: 22px 18px 18px;
    margin-bottom: 0;
    background: linear-gradient(180deg, #fff8fc, #fffdfd);
    position: sticky;
    top: 24px;
}

.horoscope-related-links h3 {
    margin: 0 0 14px;
    font-size: 1.08rem;
    font-weight: 700;
    color: #c53070;
    padding-bottom: 10px;
    border-bottom: 1px solid #f3d5e2;
}

.horoscope-related-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.horoscope-related-links li {
    margin: 0;
}

.horoscope-related-links li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #3f4b60;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.45;
    padding: 10px 12px;
    border: 1px solid #f2d8e5;
    border-radius: 10px;
    background: #fff;
    transition: all 0.2s ease;
}

.horoscope-related-links li a::after {
    content: "→";
    color: #d34d84;
    font-size: 0.92rem;
    margin-left: 12px;
}

.horoscope-related-links li a:hover {
    border-color: #e98cb3;
    background: #fff4fa;
    color: #c53070;
    transform: translateX(1px);
}

.indian-calendar-card {
    margin-top: 16px;
    border: 1px solid #d9e1f2;
    border-radius: 16px;
    padding: 20px 18px;
    background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.indian-calendar-card h3 {
    margin: 0 0 14px;
    font-size: 1.06rem;
    font-weight: 700;
    color: #285198;
    padding-bottom: 10px;
    border-bottom: 1px solid #dce7f7;
}

.indian-calendar-card .calendar-location-form {
    margin-top: 0;
    margin-bottom: 12px;
}

.indian-calendar-card .calendar-location-form label {
    color: #3f5070;
}

.indian-calendar-card .calendar-location-form select {
    background: #fff;
    color: #23334f;
    border: 1px solid #d1ddf2;
}

.calendar-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 6px 0;
}

.calendar-meta-row span {
    color: #536079;
    font-size: 0.9rem;
}

.calendar-meta-row strong {
    color: #1f2a44;
    font-size: 0.92rem;
    text-align: right;
}

.calendar-holiday-block {
    margin-top: 14px;
}

.calendar-holiday-block h4 {
    margin: 0 0 8px;
    font-size: 0.92rem;
    color: #34507f;
}

.calendar-holiday-block p {
    margin: 0;
    font-size: 0.9rem;
    color: #64708a;
}

.calendar-holiday-block ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.calendar-holiday-block li {
    font-size: 0.88rem;
    color: #394a68;
    line-height: 1.4;
    padding: 7px 8px;
    border: 1px solid #e7edf9;
    border-radius: 8px;
    background: #fff;
}

.calendar-holiday-block li span {
    display: block;
    color: #667899;
    font-size: 0.78rem;
    margin-bottom: 2px;
}

.calendar-holiday-block li strong {
    color: #263754;
    font-weight: 600;
}

.calendar-more {
    margin-top: 10px;
}

.calendar-more summary {
    list-style: none;
    color: #e65085;
    font-weight: 600;
    font-size: 0.86rem;
    cursor: pointer;
    user-select: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.calendar-more summary::-webkit-details-marker {
    display: none;
}

.calendar-more summary::after {
    content: "+";
    font-size: 0.95rem;
    line-height: 1;
}

.calendar-more[open] summary::after {
    content: "-";
}

.calendar-more-rows {
    margin-top: 8px;
    border-top: 1px solid #e4ebf7;
    padding-top: 6px;
}

.calendar-list-more {
    margin-top: 8px !important;
}



@media (max-width: 600px) {
    .horoscope-toolbar {
        justify-content: center;
    }

    .language-form {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .language-form select {
        min-width: 100%;
    }

    .horoscope-grid {
        grid-template-columns: 1fr;
    }

    .horoscope-layout {
        grid-template-columns: 1fr;
    }

    .day-switch {
        grid-template-columns: 1fr;
    }

    .horoscope-related-links {
        position: static;
    }

    .horoscope-related-links {
        margin-top: 2px;
    }

    .indian-calendar-card {
        margin-top: 14px;
    }

    .small-box {
        font-size: 1rem;
        padding: 10px 0;
    }

    .sign-title {
        font-size: 2.1rem;
    }

    .horoscope-box {
        padding: 15px;
    }
}




.zodiac-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #3f214d 0%, #16213e 50%, #041427 100%) !important;
  position: relative;
  overflow: hidden;
}

.zodiac-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zodiac-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 15px 0;
}

.zodiac-divider span {
  flex: 0.1;
  height: 2px;
  background: linear-gradient(90deg, transparent, #64b5f6, transparent);
  opacity: 0.8;
}

.zodiac-divider div {
  width: 24px;
  height: 24px;
  background: linear-gradient(45deg, #64b5f6, #90caf9);
  border-radius: 50%;
  margin: 0 15px;
  box-shadow: 0 0 15px rgba(100, 181, 246, 0.5);
}

.zodiac-subtext {
  color: #e0e0e0;
  margin-bottom: 40px;
  font-size: 1.1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 80px;
  padding: 0 10px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.zodiac-item {
  text-align: center;
  cursor: pointer;
}

.zodiac-item h3 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
} 

.zodiac-circle {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  border: 3px solid rgba(100, 181, 246, 0.6);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  position: relative;
}

.zodiac-circle::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #64b5f6, #90caf9, #42a5f5, #1e88e5);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
}

.zodiac-circle img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* Responsive Grid */
@media (max-width: 991px) {
  .zodiac-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .zodiac-heading {
    font-size: 2.2rem;
  }
  
  .zodiac-circle {
    width: 110px;
    height: 110px;
  }
  
  .zodiac-circle img {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  .zodiac-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .zodiac-section {
    padding: 40px 15px;
  }
  
  .zodiac-heading {
    font-size: 2rem;
  }
  
  .zodiac-circle {
    width: 100px;
    height: 100px;
  }
  
  .zodiac-circle img {
    width: 55px;
    height: 55px;
  }
 
}

@media (max-width: 576px) {
  .zodiac-circle {
    width: 90px;
    height: 90px;
  }
  
  .zodiac-circle img {
    width: 50px;
    height: 50px;
  }
  
  .zodiac-item h3 {
    font-size: 1rem;
  }
   .zodiac-grid {
    
    margin-bottom: 30px;
    
}
}
.horoscope-info-section {
    /* padding: 80px 0; */
    background: linear-gradient(135deg, #3a1d44 0%, #051838 100%);
    color: white;
}

.info-heading {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffd700;
}

.info-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.info-highlight {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #fff;
}

.cosmic-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><radialGradient id="bg" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23ffd700" stop-opacity="0.2"/><stop offset="100%" stop-color="%23667eea" stop-opacity="0.1"/></radialGradient></defs><circle cx="200" cy="200" r="180" fill="url(%23bg)" stroke="%23ffd700" stroke-width="2" opacity="0.3"/><circle cx="200" cy="200" r="120" fill="none" stroke="%23ffd700" stroke-width="1" opacity="0.5"/><circle cx="200" cy="200" r="60" fill="none" stroke="%23ffd700" stroke-width="1" opacity="0.7"/><text x="200" y="210" text-anchor="middle" fill="%23ffd700" font-size="40">✨</text></svg>') center/contain no-repeat;
}

.star-circle {
    display: none;
}

.planet-orbit {
    display: none;
}

.zodiac-symbol {
    display: none;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes orbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .horoscope-info-section {
        padding: 50px 0;
    }
    
    .info-heading {
        font-size: 1.8rem;
    }
    
    .info-text, .info-highlight {
        font-size: 1rem;
    }
    
    .cosmic-visual {
        height: 200px;
        margin-top: 30px;
    }
    
    .col-lg-6:last-child {
        order: -1;
        margin-bottom: 30px;
    }
}
/* ------------------------------
   EXTRA CONTENT SECTION (IO THEME)
---------------------------------*/
.horoscope-extra-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #2a1533 0%, #0b1229 100%);
  color: white;
  margin-top: 60px;
}

.extra-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.extra-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ff82b5;
  margin-bottom: 15px;
}

.extra-subtext {
  font-size: 1.15rem;
  color: #e4e4e4;
  max-width: 750px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.extra-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.extra-box {
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 105, 180, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  transition: 0.3s;
}

.extra-box h3 {
  font-size: 1.3rem;
  color: #ff82b5;
  margin-bottom: 12px;
}

.extra-box p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.9;
}

/* Responsive */
@media(max-width: 768px){
  .extra-grid {
      grid-template-columns: 1fr;
  }

  .extra-heading {
      font-size: 1.9rem;
  }

  .extra-subtext {
      font-size: 1rem;
  }
}
/* What Is Horoscope Section */
.what-is-horoscope {
  padding: 60px 20px;
  background: #ffffff;
  border-top: 1px solid #eee;
}

.wh-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 30px;
}

.wh-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  flex-wrap: wrap;
}

.wh-text {
  flex: 1 1 500px;
}

.wh-para {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

.wh-visual {
  flex: 1 1 350px;
  display: flex;
  justify-content: center;
}

.wh-star-map img{
  width: 100%;
  max-width: 500px;
  height: 300px;
  border-radius: 20px;
  /* background: url('../images/jongsun-lee-F-pSZO_jeE8-unsplash.jpg') center/cover no-repeat; */
  box-shadow: 0 10px 25px rgba(0,0,0,0.10);
  opacity: 0.95;
}


/* Mobile Responsive */
@media (max-width: 768px) {
  .wh-title {
      font-size: 24px;
  }

  .wh-content-wrapper {
    /* display: flex; */
      flex-direction: column;
      text-align: center;
  }

  .wh-star-map {
      height: 400px;
      margin-top: 20px;
  }
}
/* ========================= COMMON SECTION STYLES ========================= */

.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: #222;
}

.section-subtext {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 35px auto;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* ========================= HOW HOROSCOPE WORKS ========================= */

.how-horoscope-works {
  padding: 60px 20px;
  background: #fafafa;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.works-box {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.07);
  text-align: center;
  transition: .3s ease;
}

.works-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.works-icon img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.works-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.works-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}


/* ========================= WHY PEOPLE READ HOROSCOPES ========================= */

.why-read-horoscope {
  padding: 70px 20px;
  background: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.why-box {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.07);
  text-align: center;
  transition: .3s ease;
}

.why-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.why-icon img {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
}

.why-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.why-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}


/* ========================= RESPONSIVE DESIGN ========================= */

/* Tablets */
@media (max-width: 992px) {

  .works-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
  }

  .why-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
  }

  .section-title {
      font-size: 28px;
  }

  .section-subtext {
      font-size: 15px;
  }
}

/* Mobile: 600px */
@media (max-width: 600px) {

  .works-grid,
  .why-grid {
      grid-template-columns: 1fr;
  }

  .works-box,
  .why-box {
      padding: 20px;
  }

  .section-title {
      font-size: 26px;
  }

  .works-icon img,
  .why-icon img {
      width: 60px;
      height: 60px;
  }
}

/* Extra small */
@media (max-width: 400px) {
  .section-title {
      font-size: 23px;
  }
  .section-subtext {
      font-size: 14px;
  }
  .works-box h3,
  .why-box h3 {
      font-size: 18px;
  }
}


/* horoscope-growth-phase1-start */
.horoscope-intent-block,
.horoscope-cornerstone-block,
.horoscope-faq-block {
    border: 1px solid #e7d8e1;
    border-radius: 14px;
    padding: 16px;
    margin-top: 14px;
    background: linear-gradient(180deg, #fffafd, #ffffff);
}

.horoscope-intent-block h2,
.horoscope-cornerstone-block h2,
.horoscope-faq-block h2 {
    margin: 0 0 8px;
    font-size: 1.06rem;
    line-height: 1.3;
    color: #912555;
    font-weight: 700;
}

.horoscope-intent-block p,
.horoscope-cornerstone-block p {
    margin: 0;
    color: #59627a;
    font-size: 0.94rem;
    line-height: 1.55;
}

.horoscope-intent-links,
.horoscope-cornerstone-block ul {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.horoscope-intent-links li a,
.horoscope-cornerstone-block ul li a {
    display: block;
    text-decoration: none;
    color: #38465f;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    border: 1px solid #ecdbe4;
    border-radius: 10px;
    background: #fff;
    padding: 10px 12px;
    transition: all 0.2s ease;
}

.horoscope-intent-links li a:hover,
.horoscope-intent-links li a:focus-visible,
.horoscope-cornerstone-block ul li a:hover,
.horoscope-cornerstone-block ul li a:focus-visible {
    border-color: #db93b4;
    background: #fff4f9;
    color: #8f2352;
}

.horoscope-faq-list {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.horoscope-faq-list details {
    border: 1px solid #eedde6;
    border-radius: 10px;
    background: #fff;
    padding: 10px 12px;
}

.horoscope-faq-list details summary {
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 700;
    color: #3f4963;
    line-height: 1.4;
}

.horoscope-faq-list details p {
    margin: 8px 0 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #5a647d;
}

@media (max-width: 900px) {
    .horoscope-intent-links,
    .horoscope-cornerstone-block ul {
        grid-template-columns: 1fr;
    }
}
/* horoscope-growth-phase1-end */
/* horoscope-seo-links-polish-start */
.horoscope-seo-links {
    margin-top: 20px;
    margin-bottom: 14px;
    border: 1px solid #e6d5de;
    border-radius: 14px;
    padding: 16px;
    background: linear-gradient(180deg, #fffafc 0%, #ffffff 100%);
    box-shadow: 0 4px 14px rgba(77, 24, 50, 0.06);
}

.horoscope-seo-links .horoscope-seo-links-head {
    margin-bottom: 12px;
}

.horoscope-seo-links .horoscope-seo-links-head h3 {
    margin: 0 0 6px;
    color: #8f234f;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.25;
}

.horoscope-seo-links .horoscope-seo-links-head p {
    margin: 0;
    color: #586174;
    font-size: 0.9rem;
    line-height: 1.45;
}

.horoscope-seo-links .horoscope-seo-links-grid {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.horoscope-seo-links .horoscope-seo-links-grid li {
    margin: 0;
}

.horoscope-seo-links .horoscope-seo-links-grid li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid #ecd7e3;
    border-radius: 10px;
    background: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
}

.horoscope-seo-links .seo-link-title {
    color: #3a4255;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.35;
}

.horoscope-seo-links .seo-link-cta {
    color: #a33c67;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-left: 1px solid #f1e2e9;
    padding-left: 8px;
    white-space: nowrap;
}

.horoscope-seo-links .horoscope-seo-links-grid li a:hover,
.horoscope-seo-links .horoscope-seo-links-grid li a:focus-visible {
    border-color: #d98caf;
    background: #fff4f9;
    box-shadow: 0 2px 10px rgba(155, 46, 91, 0.12);
    transform: translateY(-1px);
}

@media (max-width: 1180px) {
    .horoscope-seo-links .horoscope-seo-links-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .horoscope-seo-links {
        padding: 14px;
    }

    .horoscope-seo-links .horoscope-seo-links-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .horoscope-seo-links {
        margin-top: 12px;
        padding: 12px;
    }

    .horoscope-seo-links .horoscope-seo-links-head h3 {
        font-size: 0.98rem;
    }

    .horoscope-seo-links .horoscope-seo-links-head p {
        font-size: 0.84rem;
    }

    .horoscope-seo-links .horoscope-seo-links-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}
/* horoscope-seo-links-polish-end */