.cs-highlight {    
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr); /* 4 rader nu */
    gap: 8px;
    /* margin-bottom: 8px !important; */
    
}

.item {
    overflow: hidden;
    position: relative;
}

/* Layouten */
.item-1 { grid-column: 1 / 3; grid-row: 1 / 3; }
.item-2 { grid-column: 3 / 5; grid-row: 1 / 2; }

.item-4 { grid-column: 3 / 5; grid-row: 2 / 4; }
.item-5 { grid-column: 1 / 5; grid-row: 4 / 5; }
.item-3 { grid-column: 1 / 3; grid-row: 3 / 4; 
    display: flex;           /* aktivera flex */
    align-items: center;   /* tryck ned innehållet */
    justify-content: center;
    padding: 72px;           /* valfritt – luft runt texten */
    background-size: cover;  /* om du har bg-bild */
    background-position: center;
    /* background-color: var(--ast-global-color-5); */
    
}

.ast-single-post .entry-content a.case-link
{
    text-decoration: none;
}

.case-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.case-link:hover .excerpt-arrow {
  transform: translateX(3px);
  transition: transform 0.25s ease;
}

.case-link:focus-visible {
  outline: 2px solid #d8cbb8;
  outline-offset: 4px;
}

.case-link .highlight-case__title,
.case-link p
{
    color: var(--ast-global-color-2);
    text-decoration: none !important;
}

.case-link:hover .highlight-case__title,
.case-link:hover p
{
    color: var(--ast-global-color-2);
    text-decoration: none !important;
}

.case-excerpt {
  display: flex;
  flex-direction:column;
  gap: 16px;
  height: 100%;
  justify-content: center;
}

.case-excerpt p {
  margin: 0;
}

/* 🔑 Denna gör jobbet */
.excerpt-arrow {
  margin-left: auto;
}


.excerpt-arrow {
  display: inline-block;
  width: 45px;
  height: 26px;
  margin-left: 8px;
  vertical-align: middle;

  /* Beige färg – justera till din palett */
  background-color: var(--ast-global-color-2);

  /* SVG som mask */
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 817 451.5'%3E%3Cpath d='M817,225.8l-219.9,219.9c-7.8,7.8-20.5,7.8-28.3,0-7.8-7.8-7.8-20.5,0-28.3l171.6-171.6H20c-11,0-20-9-20-20s9-20,20-20h720.5L568.9,34.2c-7.8-7.8-7.8-20.5,0-28.3s20.5-7.8,28.3,0l219.9,219.9z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 817 451.5'%3E%3Cpath d='M817,225.8l-219.9,219.9c-7.8,7.8-20.5,7.8-28.3,0-7.8-7.8-7.8-20.5,0-28.3l171.6-171.6H20c-11,0-20-9-20-20s9-20,20-20h720.5L568.9,34.2c-7.8-7.8-7.8-20.5,0-28.3s20.5-7.8,28.3,0l219.9,219.9z'/%3E%3C/svg%3E");

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  align-self: self-end;
}


/* Bild-styling */
.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.item-1 img { aspect-ratio: 1 / 1; }
.item-2 img { aspect-ratio: 2 / 1; }
.item-3 img { aspect-ratio: 2 / 1; }
.item-4 img { aspect-ratio: 1 / 1; }
.item-5 img { aspect-ratio: 4 / 1; }

