/*
	Abstracts are helpers, variables and functions
	for scss compliation.
*/
/*
	@TODO: Add to theme: new division fix for updated sass package.
*/
/**==================================================================================================================================
BREAKPOINT
@TODO: remove? What is use case?? either use simple global points or write custom line. why does first breakpoint have to be 0?
 ==================================================================================================================================*/
/**==================================================================================================================================
BREAKPOINT ENDS
==================================================================================================================================*/
span.edit-link {
  display: inline-block;
  background-color: yellow;
  font-weight: 700;
  position: fixed;
  left: 0;
  bottom: 3.125rem;
  transform: translateX(-45px);
  transition: all 0.2s;
}

span.edit-link a {
  display: block;
  padding: 0.9375rem;
}

span.edit-link:hover {
  transform: translateX(0);
}

/*
	Variables for compliation
	NB! Colors should be added to base/config file as css root variable.
*/
/**
 * Block section background colors.
 * Include the background options ACF fields group to use these.
 */
/*
 * makes ul/ol as a dropdown select (normaly in mobile)
 * Structure: div > title > list > li > a
*/
/*
	Variables for legacy dc plugins
*/
.two-column-content .page-layout {
  display: flex;
}

@media screen and (max-width: 999px) {
  .two-column-content .page-layout {
    flex-direction: column;
  }
}
.two-column-content .page-layout .sidebar {
  background-color: #ffffff;
  padding: 4rem 2rem;
  flex-shrink: 0;
  width: 35%;
  color: #12374F;
}

@media screen and (max-width: 999px) {
  .two-column-content .page-layout .sidebar {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
  }
}
.two-column-content .page-layout .sidebar h1 {
  font-size: 40px;
  line-height: 1.3;
  color: #1e3d59;
  margin: auto;
}

@media screen and (max-width: 999px) {
  .two-column-content .page-layout .sidebar h1 {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 1rem;
  }
}
.two-column-content .page-layout .content {
  padding-left: 3rem;
  flex-grow: 1;
  max-width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 999px) {
  .two-column-content .page-layout .content {
    padding-left: 0;
    padding-right: 0;
    padding-block: 0;
    max-width: 100%;
    margin: 0;
  }
}
.two-column-content .page-layout .content h4 {
  color: #12374F;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 30px;
}

@media screen and (max-width: 999px) {
  .two-column-content .page-layout .content h4 {
    font-size: 12px;
  }
}
.two-column-content .page-layout .content h2 {
  color: #12374F;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 30px;
}

@media screen and (max-width: 999px) {
  .two-column-content .page-layout .content h2 {
    font-size: 14px;
  }
}
.two-column-content .page-layout .content p {
  color: #12374F;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

@media screen and (max-width: 999px) {
  .two-column-content .page-layout .content p {
    font-size: 12px;
  }
}
.two-column-content .page-layout .content hr {
  margin-top: 52px;
  border: none;
  border-top: 1px solid #ccc;
  margin: 2rem 0;
}

@media screen and (max-width: 999px) {
  .two-column-content .page-layout .content hr {
    margin: 1.25rem 0;
  }
}
