/** 
 * Color Variables
 */
.block-latest-news__heading a {
  font-family: "p22-mackinac-pro", serif;
  font-weight: 700;
  font-style: normal;
}

.block-latest-news {
  padding: 5%;
  display: flex;
  gap: 20px; /* Increased gap for better spacing between image and content */
  align-items: center;
  position: relative;
  border-radius: 12px;
}

.block-latest-news__tag {
  position: absolute;
  background-color: #a17de5;
  border-radius: 100px;
  color: white;
  padding: 6px 20px; /* Adjusted padding for better visibility */
  top: 10px;
  left: -10px;
  font-size: 1.1em;
}

.block-latest-news__image {
  width: 50%; /* Adjusted width to create more space for the content */
  padding-left: 16%;
}

.block-latest-news__content {
  width: 50%; /* Increased content area width */
  padding: 8%; /* Adjusted padding to create balance */
  display: flex;
  flex-direction: column;
}

.block-latest-news__thumbnail {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  aspect-ratio: 1.1/1; /* Adjusted to create a better fit for the image */
  position: relative;
  border-radius: 12px; /* Added rounding to image edges */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Added shadow for depth */
}

.block-latest-news__heading a {
  font-size: 26.25px;
  line-height: 33.75px;
  margin-top: 18.75px;
  margin-bottom: 9px;
}

.block-latest-news__subheading {
  color: #d1bdf2;
  font-size: 1.2em;
  margin-bottom: 10px; /* Adjusted to create space between subheading and text */
}

.block-latest-news__title {
  font-size: 2em; /* Increased title font size */
  font-weight: bold;
  color: #4d336b; /* Darker color for the title */
  margin-bottom: 20px; /* Added margin for better spacing */
}

.block-latest-news__description {
  font-size: 1.1em;
  color: #333;
  line-height: 1.6;
}

.block-latest-news__actions {
  display: flex;
  gap: 32px;
}
.block-latest-news__actions a {
  color: #a17de5;
  font-family: "Satoshi-Bold";
  text-decoration: underline;
  transition: color 0.3s ease;
}
.block-latest-news__actions a:last-of-type {
  color: #423063;
}

.block-latest-news__actions a:hover {
  color: #4d336b; /* Hover effect for better interaction */
}

@media (max-width: 768px) {
  .block-latest-news {
    flex-direction: column;
    align-items: flex-start;
    padding: 5%;
  }
  .block-latest-news__image {
    width: 100%;
    padding-left: 0;
  }
  .block-latest-news__content {
    width: 100%;
    padding: 5%;
  }
  .block-latest-news__title {
    font-size: 1.8em;
  }
  .block-latest-news__description {
    font-size: 1em;
  }
}
@media (max-width: 480px) {
  .block-latest-news {
    padding: 3%;
  }
  .block-latest-news__tag {
    font-size: 1em;
    padding: 4px 16px;
    left: 0;
  }
  .block-latest-news__title {
    font-size: 1.5em;
  }
  .block-latest-news__description {
    font-size: 0.95em;
  }
  .block-latest-news__actions {
    margin-top: 10px;
  }
}
