.textLinkColumn {
  width: 100%;
  margin: auto;
  margin-top: 100px;
  margin-bottom: 100px;
  box-sizing: border-box;
}

.textLinkColumn_Block {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "a b";
  gap: 0px;
  /* Add gap between items */
  width: 95%;
  margin: auto;
  box-sizing: border-box;
  max-width: 1280px;
  color: #000000;
}

.textLinkColumn_Column {
  position: relative;
  display: flex;
  flex-direction: column;
  /* Arrange children in a column */
  justify-content: center;
  /* Center children vertically */
  align-items: flex-start;
  /* Align children to the left horizontally */
  height: 100%;
}

.textLinkColumn_Column h3 {
  font-family: Anton;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px;
  color: var(--Hittarp-svart);
  margin-bottom: 0px;
}

.textLinkColumn_Column>h2 {
  margin: 0;
  color: var(--Hittarp-svart);
  font-family: Anton;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px;
  text-transform: uppercase;
  padding-left: 10px;
}

.textLinkColumn_textArea {
  display: flex;
  flex-direction: column;
}

.textLinkColumn_text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: auto;
  padding: 15px 10px;
  border: 1px solid var(--Hittarp-red1);
  border-radius: 8px;
  background-color: var(--Hittarp-vit);
}

.textLinkColumn_Column p {
  color: var(--Hittarp-svart);
  font-family: "Glacial Indifference";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.36px;
  padding-right: 10px;
  margin-top: 0px;
  margin-bottom: 5px;
}

.textLinkColumn_Column h4 {
  color: var(--Hittarp-svart);
  font-family: "Glacial Indifference";
  font-size: 18px;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.36px;
  padding-right: 10px;
  padding-left: 10px;
  margin-top: 15px;
  margin-bottom: 5px;
}

.textLinkColumn_link {
  display: flex;
  flex-direction: column;
}

.textLinkColumn_buttons {
  margin-top: 20px;
}

.textLinkColumn_buttons a {
  background-color: var(--Hittarp-red1);
  color: var(--Hittarp-vit);
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-family: Oswald;
  font-size: 16px;
  font-style: normal;
  text-decoration: none;
  text-transform: uppercase;
}

.textLinkColumn_buttons a:hover {
  background-color: var(--Hittarp-red2);
}

.textLinkColumn_links a {
  display: inline-block;
  height: 45px;
  padding-left: 0;
  flex-shrink: 0;
  font-family: Oswald;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.08px;
  text-transform: uppercase !important;
  border: none;
  margin-right: 20px;
  /* border-radius: 26px; */
  cursor: pointer;
  background-color: transparent;
  color: var(--Hittarp-svart);
  text-decoration: none;
}

.textLinkColumn_links a::after {
  content: "";
  display: block;
  width: 55px;
  height: 2px;
  background: var(--Hittarp-red1);
  transition: width 0.3s;
}

.textLinkColumn_links a:hover::after {
  width: 100%;
}

.col-left {
  grid-area: a;
}

.col-right {
  grid-area: b;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .textLinkColumn_Block {
    width: 95%;
    gap: 0px;
    /* Reduce gap for medium screens */
  }

  .textLinkColumn--text .textLinkColumn_text img {
    border-radius: 0px 8px 8px 0px;
  }

  .textLinkColumn--text {
    margin: auto;
  }

  .textLinkColumn_Column>h2 {
    font-size: 36px;
    /* Adjust font size */
  }
}

@media screen and (max-width: 1024px) {
  .textLinkColumn {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .textLinkColumn_Block {
    height: auto;
    width: 95%;
  }

  .textLinkColumn_Block {
    gap: 20px;
    grid-template-columns: 1fr;
    /* Stack columns on smaller screens */
    grid-template-areas:
      "b"
      "a";
  }

  .textLinkColumn_Column--left,
  .textLinkColumn_Column--right {
    grid-area: unset;
    top: -50%;
  }

  .text--left .textLinkColumn_text img,
  .text--right .textLinkColumn_text img {
    border-radius: 8px 8px 0px 0px;
    width: 95%;
    margin: auto;
  }

  .textLinkColumn--text {
    order: -1;
    top: 0;
    display: absolute;
    transform: translateY(-25%);
  }

  .textLinkColumn_text::-webkit-scrollbar {
    width: 3px;
  }
}

@media screen and (max-width: 768px) {
  .textLinkColumn_Block {
    gap: 0px;
    width: 90%;
    padding-bottom: 10px;
  }

  .textLinkColumn {
    padding-top: 0;
    padding-bottom: 0;
  }


  .textLinkColumn_Column>h2 {
    font-size: 28px;
    padding-top: 10px;
  }

  .textLinkColumn_Column p {
    font-size: 18px;
  }

  .textLinkColumn_Column h3 {
    font-size: 25px;
  }

  .textLinkColumn_Column button {
    font-size: 16px;
    padding: 10px 0px;
  }

  .textLinkColumn_slogan {
    top: -70px;
  }
}