.alpha-short-description * {
  margin-bottom: 0!important;
}

/* =========================================================
   Alpha – Mirror Toggle (Radio-based)
========================================================= */

.alpha-mirror-wrapper {
  margin: 2rem 0;
}

.alpha-mirror-radio-show,
.alpha-mirror-radio-hide {
  display: none;
}

.alpha-mirror-toggle,
.alpha-mirror-back {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 1rem;
  display: inline-block;
}

.alpha-mirror-toggle img,
.alpha-mirror-back img {
  vertical-align: middle;
}

.alpha-mirror-tab {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
}

.alpha-mirror-content {
  position: relative;
}

.alpha-mirror-body {
  margin-bottom: 1rem;
}

/* Show mirror tab when show radio is checked */
.alpha-mirror-radio-show:checked ~ .alpha-mirror-tab {
  display: block;
}

/* Hide toggle button when show radio is checked */
.alpha-mirror-radio-show:checked ~ .alpha-mirror-toggle {
  display: none!important;
}

/* Use :has() to hide original content when mirror is shown */
.entry-content:has(.alpha-mirror-radio-show:checked) > *:not(.alpha-mirror-wrapper) {
  display: none!important;
}

.entry-summary:has(+ .entry-content:has(.alpha-mirror-radio-show:checked)) {
  display: none!important;
}

/* =========================================================
   Alpha – Shared / Utility Blocks
========================================================= */

/* Mirror block (grayscale hover effect) */
.alpha-block-mirror {
  padding: 15px !important;
  display: flex!important;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
  text-align: center;
  box-shadow: none !important;
  color: #34bae2!important;
  font-family: cursive;
  font-size: 3rem;
  font-weight: 900;
  gap: 20px;

  filter: grayscale(100%);
  transition: filter 0.3s ease;

  &:hover {
    filter: grayscale(0%);
  }

  img {
    max-height: 100px;
  }
}

@media (max-width: 1024px) {
  .alpha-block-mirror {
    font-size: 1.8rem;
    gap: 0;
    text-align: left;
  }
}


/* =========================================================
   Alpha – Latest Thought
========================================================= */

.alpha-thought {
  background-color: #f9f9f9;
  border-left: 4px solid #fc8b1b;
  padding: 15px 10px;
  margin-bottom: 30px;

  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.alpha-thought-title {
  margin: 0 0 6px 0;

  font-size: 1.75rem;
  font-weight: 700;
  color: #333;
}

.alpha-thought-content {
  font-size: 1.4rem;
  color: #555;

  * {
    margin: 0;
  }

  a {
    color: #ff9900;
    text-decoration: underline;

    &:hover {
      color: #cc7a00;
    }
  }
}


/* =========================================================
   Alpha – Other Thoughts (Grid)
========================================================= */

.alpha-thought-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.alpha-thought-list-title {
  margin: 0 0 10px 0 !important
}

.alpha-thought-item {
  background-color: #ffffff;
  border-left: 4px solid #fc8b1b;
  padding: 12px 10px;

  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;

  &:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  }

  .alpha-thought-title {
    margin: 0 0 6px 0;

    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
  }

  .alpha-thought-content {
    font-size: 1.2rem;
    color: #555;

    * {
      margin: 0;
    }

    a {
      color: #ff9900;
      text-decoration: underline;

      &:hover {
        color: #cc7a00;
      }
    }
  }
}


/* =========================================================
   Alpha – Categories
========================================================= */

.alpha-categories {
  margin-bottom: 20px;
}

.alpha-categories-title {
  margin: 0 0 10px 0 !important;
}

.alpha-categories ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 600;
}

.alpha-categories a {
  display: block;
  padding: 8px 12px;

  background-color: #34bae2;
  color: #ffffff;

  font-size: 1.5rem;
  text-decoration: none;
  transition: background-color 0.3s ease;

  &:hover {
    background-color: #e67716;
  }
}


/* =========================================================
   Alpha – Header Disclaimer
========================================================= */

.alpha-header-disclaimer {
  position: absolute;
  top: 100%;
  right: 13px;
  z-index: 100;

  padding: 3px 12px;

  background-color: #34bae2;
  color: #ffffff;
  font-size: 1.2rem;
}

@media (min-width: 513px) {
  .alpha-header-disclaimer {
    right: 23px;
  }
}

@media (min-width: 768px) {
  .alpha-header-disclaimer {
    right: 52px;
    font-size: 1.6rem;
  }
}

/* Header with opinion border modifier */
header:has(.opinion-header-border) .alpha-header-disclaimer {
  top: calc(100% + 7px);
}


/* =========================================================
   Alpha – Donation Block (2D)
========================================================= */

.alpha-2d-donation-block {
  margin: 30px auto;
  padding: 30px 20px;
  text-align: center;

  background: linear-gradient(135deg, #34bae2, #fc8b1b);
  border-radius: 12px;
  color: #ffffff;

  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  &:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  }

  img {
    width: 100%;
    max-width: 320px;
    margin: 20px auto;

    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;

    &:hover {
      transform: scale(1.05);
    }
  }
}

.alpha-2d-donation-title {
  color: #fff;
  margin-bottom: 15px;
  font-size: 2.4rem;
  font-weight: 600;
}

.alpha-2d-donation-text {
  margin-bottom: 20px;
  font-size: 1.4rem;
  line-height: 1.6;
}

/* =========================================================
   Alpha – Footer Posts (Compact)
========================================================= */

.alpha-footer-posts-title {
    color: white;
}

.alpha-footer-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Item */
.alpha-footer-post-item {
  display: flex;
  gap: 12px;
  padding: 12px;

  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: background-color 0.2s ease;
}

.alpha-footer-post-item:hover {
  background-color: #fafafa;
}

/* Thumbnail */
.alpha-footer-post-thumb-link {
  flex-shrink: 0;
}

.alpha-footer-post-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
}

/* Content */
.alpha-footer-post-content {
  display: flex;
  flex-direction: column;
}

/* Title */
.alpha-footer-post-title {
  margin: 0 0 4px 0;
  font-size: 1.2rem;
  line-height: 1.25;
}

.alpha-footer-post-title a {
  color: #222;
  text-decoration: none;
}

.alpha-footer-post-title a:hover {
  text-decoration: underline;
}

/* Excerpt */
.alpha-footer-post-excerpt {
  margin: 0 0 6px 0;
  font-size: 1.15rem;
  line-height: 1.35;
  color: #666;

  /* max 2 linije */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.alpha-footer-post-excerpt p {
  margin: 0;
}

/* Read more */
.alpha-footer-post-readmore {
  font-size: 1.1rem;
  color: #fc8b1b;
  text-decoration: none;
}

.alpha-footer-post-readmore:hover {
  text-decoration: underline;
}


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

@media (max-width: 1024px) {
  .alpha-footer-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .alpha-footer-posts-grid {
    grid-template-columns: 1fr;
  }

  .alpha-footer-post-item {
    padding: 10px;
  }
}

/* Alpha sidebar */
@media (min-width: 873px) {
  .alpha-sidebar {
    position: sticky;
    top: 160px;
  }
}

/* Custom fixes */
.opinion-items.opinion-posts .opinion-post .entry-media img {
  height: 200px;
}

@media (max-width: 576px) {
  .opinion-items.opinion-posts .opinion-post .entry-media img {
    height: 100px;
  }
}

.opinion-post .entry-title.h2 {
  font-size: 2.4rem;
  margin-bottom: 0;
}

.opinion-menu-mobile .opinion-bg-light {
  background-color: transparent;
}
