:root {
  --input-color: #F2F9FD;
  --highlighted-text-color: #2B3035;
  --deactive-text-color: #8493A0;
  --normal-text-color: #575B5E;
  --bold-text-color: #272828;
  --light-text-color: #A1AEB7;
  --highlighted-font-size: 1.5rem;
  --regular-font-weight: 400;
  --medium-font-weight: 500;
  --semi-bold-font-weight: 600;
}

.truncate {
  overflow: hidden;
  line-height: 2rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 575.98px) {
  .aligncenter {
    width: 100%;
    margin-bottom: 1.5em;
  }
}

button.transparent {
  border: none;
  background: none;
}

img.size-full {
  width: 100%!important;
  height: 100%!important;
}

.alignnone,
.alignnone img {
  max-width: 100%;
  height: auto;
}

.alignleft {
  float: left;
  margin: 0.5em 2em 0.5em 0;
}

@media (max-width: 575.98px) {
  .alignleft {
    margin: 1.5em 0;
    float: none;
  }
}

.alignright {
  float: right;
  margin: 0.5em 0 0.5em 2em;
}

@media (max-width: 575.98px) {
  .alignright {
    margin: 1.5em 0;
    float: none;
  }
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 14px;
  padding-top: 0.5em;
  margin: 0;
}

.text-center {
  text-align: center;
}

input:focus {
  outline: none;
}

#main {
  font-family: 'Inter', sans-serif;
}

.blog-heading {
  font-weight: 600;
  margin: 30px 0;
}

.blog-nav {
  margin-top: 30px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 575.98px) {
  .blog-nav {
    margin-top: 20px;
    display: block;
  }
}

.blog-nav .border-bottom {
  border-bottom: 1px solid #C2D1D9;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 1px;
  z-index: -1;
}

.blog-nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.blog-nav li {
  display: inline-block;
  margin-right: 10px;
  padding-right: 10px;
}

.blog-nav li a {
  display: inline-block;
  text-decoration: none;
  font-size: var(--highlighted-font-size);
  width: 100%;
  padding-bottom: 10px;
  font-weight: var(--semi-bold-font-weight);
  color: var(--deactive-text-color);
}
@media (max-width: 575.98px) {
  .blog-nav li a {
    font-size: 1.3rem;
  }
}

.blog-nav li.active a {
  color: var(--highlighted-font-size);
  border-bottom: 2px solid black;
}

.blog-nav li a:hover {
  color: black;
  border-bottom: 2px solid black;
}

.blog-nav .search-wrapper {
  color: var(--deactive-text-color);
}

.blog-nav .search-wrapper input {
  border: none;
  width: 80px;
  font-size: var(--highlighted-font-size);
  font-weight: var(--semi-bold-font-weight);
  transition: width 0.3s ease-out;
}

.blog-nav .search-wrapper input:focus {
  width: 300px;
}

.blog-nav .search-container {
  position: relative;
  margin-bottom: 12px;
}

.blog-nav .search-container img {
  position: absolute;
  top: -7px;
  right: 0;
  width: 35px;
}

.blog-nav .search-mobile {
  position: relative;
}

.blog-nav .search-mobile input {
  width: 100%;
  background-color: var(--input-color);
  border: none;
  border-radius: 17px;
  padding: 10px 0 10px 10px;
  margin-bottom: 20px;
}

.blog-nav .search-mobile button {
  position: absolute;
  right: 0;
  top: 2px;
  padding: 0;
}

.article-block {
  margin: 30px 0;
}

.block-top {
  margin: 0 auto 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 500;
}

.block-top .text {
  flex-grow: 1;
  font-size: var(--highlighted-font-size);
  font-weight: var(--semi-bold-font-weight);
}

.block-top .button {
  background-color: var(--input-color);
  font-size: var(--highlighted-font-size);
  font-weight: var(--semi-bold-font-weight);
  color: #04ABE5;
  border: none;
  border-radius: 5px;
  text-align: center;
  margin-left: 10px;
  padding: 5px 4px 5px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  position: relative;
}

.block-top .button img {
  width: 1.5rem;
  margin-left: 5px;
  display: inline-block;
}

.block-top .button:hover img {
  animation: moveRight .3s forwards;
}

.grid__2items {
  width: 33.33333333%;
}

@media (max-width: 575.98px) {
  .block-body {
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .block-body::-webkit-scrollbar {
    display: none;
  }
  .block-scrollable__3items {
    width: 1000px;
  }
  .block-scrollable__2items {
    width: 670px;
  }
  .grid__2items {
    width: 50%;
  }

  .related-posts {
    display: flex;
    width: 1300px;
  }
}

@keyframes moveRight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(2px);
  }
}
.article-preview {
  display: block;
  text-decoration: none;
  min-height: 400px;
  margin-bottom: 20px;
}

@media (max-width: 575.98px) {
  .article-preview {
    height: auto;
  }
}

.article-preview img {
  width: 100%;
}

@media (max-width: 575.98px) {
  .article-preview img {
    border-radius: 15px 15px 0 0;
  }
}

.article-preview:visited,
.article-preview:hover {
  text-decoration: none;
}

.article-breed-container {
  display: grid;
  column-gap: 2rem;
  row-gap: 5rem;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
  .article-breed-container {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2rem;
  }
}

.article-breed-block:hover {
  text-decoration: none;
}

.article-breed-block:hover .heading {
  text-decoration: underline;
}

.article-breed-block .article-breed-name {
  padding-top: 17px;
}

.article-breed-block .excerpt {
  font-size: 1.4rem;
  color: var(--light-text-color);
  font-weight: var(--medium-font-weight);
}

@media (max-width: 575.98px) {
  .article-breed-block .article-breed-name {
    padding: 0;
  }
}

.article-breed-block .heading {
  font-size: var(--highlighted-font-size);
  font-weight: var(--semi-bold-font-weight);
  margin: 4px 0;
  display: block;
  color: black;
}

@media (max-width: 575.98px) {
  .article-breed-block .article-breed-name .heading {
    font-size: 12px;
  }
}

.article-preview .article-preview-info {
  padding-top: 17px;
}

@media (max-width: 575.98px) {
  .article-preview .article-breed-name,
  .article-preview .article-preview-info {
    border-left: 2px solid #E7E9EC;
    border-right: 2px solid #E7E9EC;
    border-bottom: 2px solid #E7E9EC;
    border-radius: 0 0 15px 15px;
  }
  .article-preview .article-preview-info {
    padding: 17px;
  }
}

@media (max-width: 575.98px) {
  .article-preview--bottom-gap {
    margin-bottom: 20px;
  }
}

.article-preview .date,
.article-preview .excerpt {
  font-size: 1.4rem;
  color: var(--light-text-color);
}

.article-preview .excerpt {
  font-weight: var(--medium-font-weight);
}

.article-preview .date {
  display: block;
  font-weight: var(--regular-font-weight);
}

.article-preview .heading {
  font-size: var(--highlighted-font-size);
  font-weight: var(--semi-bold-font-weight);
  margin: 4px 0;
  display: block;
  color: black;
}

.article {
  width: 100%;
}

.article-meta {
  margin: 30px 0;
  font-size: 1.4rem;
  font-weight: 400;
  display: flex;
  color: var(--light-text-color);
  align-items: center;
}

.article-meta .article-author-avatar {
  border-radius: 50%;
  width: 20px;
  margin-right: 10px;
}

.article-meta .article-created-date:after {
  content: '|';
  margin: 0 10px;
}

.article-meta .article-share {
  cursor: pointer;
  display: flex;
  position: relative;
}

.article-meta .article-share img {
  margin-left: 3px;
  position: relative;
  z-index: -1;
}

.article-meta .article-share ul.share--open {
  visibility: visible;
  height: 115px;
  transition: visibility .4s ease-out,height .4s ease-out;
}

.article-meta .article-share ul {
  position: absolute;
  padding: 0;
  margin: 0;
  left: 0;
  top: 25px;
  list-style-type: none;
  background: #505D68;
  will-change: height;
  height: 0;
  visibility: hidden;
  transition: visibility .4s ease-out,height .4s ease-out;
  overflow: hidden;
}

.article-meta .article-share ul li a {
  color: white;
  padding: 10px 10px 10px 30px;
  display: block;
  background-position: 10px 13px;
  background-repeat: no-repeat;
  background-size: auto 1.14583rem;
}

.article-meta .article-share ul li a.share-item__twitter {
  background-image: url('https://www.dogzonline.com.au/images/twitter.svg');
}

.article-meta .article-share ul li a.share-item__linkedin {
  background-image: url('https://www.dogzonline.com.au/images/linkedin.svg');
}

.article-meta .article-share ul li a.share-item__facebook {
  background-image: url('https://www.dogzonline.com.au/images/facebook.svg');
}

.article-meta .article-share ul li a:hover {
  text-decoration: none;
  background-color: #45B6E6;
}

.article-feature-image {
  width: 100%;
  margin-bottom: 30px;
}

.article h1 {
  font-weight: 600;
}

.article-content {
  margin-top: 30px;
  color: var(--light-text-color);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 25px;
}

.article-content p {
  margin-bottom: 20px;
}

.article-content p, 
.article-content a, 
.article-content i, 
.article-content span,
.article-content small,
.article-content li {
  color: var(--normal-text-color);
}

.article-content a {
  text-decoration: underline;
}

.article-content b,
.article-content strong {
  color: var(--bold-text-color);
}

.article-content h2,
.article-content h2 span,
.article-content h3, 
.article-content h3 span,
.article-content h4, 
.article-content h4 span,
.article-content h5,
.article-content h5 span {
  color: var(--bold-text-color);
  margin-top: 40px;
  font-size: 1.6rem;
  font-weight: 600 !important;
}

.search-form {
  display: flex;
  position: relative;
  margin-top: 20px;
  align-items: center;
}

.search-form input {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--light-text-color);
  color: var(--light-text-color);
  font-size: 1.5rem;
  padding: 8px 0;
}
@media (max-width: 575.98px) {
  .search-form input {
    border-radius: 17px;
    background-color: var(--input-color);
    padding: 10px 0 10px 10px;
    border: none;
    font-size: 1.3rem;
  }
}

.search-form button {
  position: absolute;
  right: 0;
  padding: 0;
  bottom: 8px;
}
@media (max-width: 575.98px) {
  .search-form button {
    bottom: 2px;
  }
}

.ad-wrapper,
div:has(> [data-fuse$="_header"]),
div:has(> [data-fuse$="_footer"]) {
  display: flex;
  justify-content: center;
  align-items: center;
}

[data-fuse$="_header"],
[data-fuse$="_footer"] {
  width: 100%;
  max-width: 728px;
  height: 90px;
}

@media (max-width: 728px) {
  [data-fuse$="_header"],
  [data-fuse$="_footer"] {
    max-width: 320px;
    height: 100px;
  }
}

.article-quiz-container {
  margin: 0;
}

.article-quiz-container > strong {
  font-weight: 500;
  margin: 15px 0 10px;
}

.article-quiz {
  display: flex;
}

.article-quiz__img {
  flex: 0 0 45%;
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-color: #f7fafd;
  display: none;
  padding: 25px 25px 0;
  text-align: center;
}

@media (min-width: 768px) {
  .article-quiz__img {
    display: block;
  }
}

.article-quiz__img strong {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.article-quiz__img p {
  color: #45B6E6;
  font-weight: 500;
  margin-bottom: 5px;
}

.article-quiz__img span {
  font-size: 14px;
  text-align: center;
}

.article-quiz__body {
  flex: 1;
  background-color: #141b30;
  padding: 0 20px 20px 20px;
}

@media (min-width: 768px) {
  padding: 0 30px 30px 30px;
}

@media (min-width: 768px) {
  flex: 0 0 55%;
}

.article-quiz__progress-container {
  height: 5px;
  width: 100%;
  background: white;
  border-radius: 5px;
  margin: 20px 0;
}

.article-quiz__progress-bar {
  height: 100%;
  background: #04ABE5;
  transition: width 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 11.11%;
  border-radius: 5px;
}

.article-quiz__content strong,
.article-quiz__content p {
  color: white;
  font-weight: 300;
  font-size: 14px;
}

.article-quiz__content ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.article-quiz__content ul li {
  cursor: pointer;
  font-weight: 400;
  font-size: 15px;
  padding: 15px 10px;
  background-color: #7D859D33;
  color: white;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.article-quiz__content ul li:hover {
  background: white;
  color: black;
  border-color: #cbd5e0;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.article-quiz__results {
  padding: 25px 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.article-quiz__results strong {
  color: white;
  font-weight: 500;
}

.article-quiz__results ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.article-quiz__results ul li {
  color: white;
  font-weight: 200;
  font-size: 14px;
}

.article-quiz__results ul li a {
  color: white;
}

.article-quiz__results ul li span {
  color: white;
  background: #45B6E6;
  border-radius: 50%;
  display: inline-flex;
  width: 15px;
  height: 15px;
  padding: 9px;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  justify-content: center;
  margin-right: 5px;
}

.article-quiz__results-list {
  column-gap: 20px;
  column-count: auto;
}

.article-quiz__results-list li {
  break-inside: avoid;
  margin-bottom: 15px;
}

/* Responsive columns */
@media (min-width: 768px) {
  .article-quiz__results-list {
    column-count: 2;
  }
}

/* Modifiers for left-side item count */
.article-quiz__results-list--left2 li:nth-child(2) {
  break-after: column;
}
.article-quiz__results-list--left3 li:nth-child(3) {
  break-after: column;
}

.article-quiz__results-notice {
  display: block;
  color: white;
  font-size: 13px;
  text-align: center;
  font-style: normal;
  margin-top: 50px;
}

.article-quiz__summary {
  display: block;
}

.article-quiz__summary h3 {
  color: white;
  font-size: 20px;
  margin: 0;
  text-align: center;
}

.article-quiz__summary p {
  text-align: center;
  color: white;
  margin: 5px 0 30px;
  font-weight: 300;
}

@media (min-width: 768px) {
  .article-quiz__summary {
    display: none;
  }
}
