/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 11 2025 | 05:25:15 */
/* Single Template */
body.single-guide .header-spacer {
	height: 140px !important;
}
.guide-header {
      display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    background: #182e42;
	padding: 60px calc((100vw - 1280px) / 2);
}

.header-left .guide-tag {
    display: inline-block;
    background: #F18921;
	color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.header-left h1 {
    margin: 0;
	color: #fff;
}

.header-right img {
	border-radius: 15px;
	width: 100%;
    height: 400px;
    object-fit: cover;
}

.guide-content {
	padding: 60px calc((100vw - 1280px) / 2);
	display: flex;
	gap: 30px;
}

.guide-container {
	display: flex;
	gap: 30px;
}

.guide-steps .guide-step {
    margin-bottom: 2rem;
    border: 2px solid #eee;
    padding: 30px;
}

.related-guides {
	min-width: 400px;
}

.related-guides .related-grid {
  display: flex;
	flex-direction: column;
	gap: 10px;
}

.related-card {
  text-decoration: none;
  color: inherit;
  padding: 0px;
  transition: box-shadow 0.3s ease;
	display: flex;
	gap: 20px;
    align-items: center;
}

.related-card h3 {
	color: #182e42;
    font-size: 20px;
	margin-bottom: 0px;
}

.related-card img {
	border-radius: 15px;
    width: 100px;
    height: 100px;
    object-fit: cover;
    max-width: 100px;
}

.link-arrow {
	display: flex;
	display: none;
    border-radius: 15px;
    border: 1px solid #fff;
    width: 60px;
    height: 60px;
    color: #fff;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}
a:hover .link-arrow {
	border: 1px solid #F18921;
    color: #F18921;
}

/* Related Content */
.related-content {
	display: flex;
	padding: 30px calc((100vw - 1280px) / 2);
    background: #f1f1f1;
	gap: 30px;
}
.related-content-item img {
	height: 350px;
    width: 100%;
    object-fit: cover;
}
.related-content-item {
	width: 50%;
	border-radius: 5px;
    clip-path: border-box;
}
.related-content-item h3 {
	color: #fff;
	background: #182e42;
    padding: 10px 40px;
	margin-bottom: 0px;
	display: flex;
    align-items: center;
    justify-content: space-between;
}
.related-content-item h3::after {
	content: url(https://hw.qld.gov.au/wp-content/themes/Revolution-Child/hwqrecipe/images/banner-arrow-right.svg);
	margin-bottom: -10px;
}

@media (max-width: 767px) {
	.guide-header {
		flex-direction: column;
		align-items: unset;
	}
	.guide-content {
		flex-direction: column;
	}
	body.single-guide .hwqrecipe__column--social {
        justify-content: unset;
        gap: 10px;
    }
	.guide-steps .guide-step {
		width: 100%;
	}
	.related-guides .related-grid {
		grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
	}
	.guide-container {
		flex-direction: column;
	}
	.related-content {
		flex-direction: column;
	}
	.related-content-item {
		width: 100%;
	}
	.related-content-item img {
		height: 200px;
	}
}

/* Archive Template (UNUSED) */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.guide-card {
  text-decoration: none;
  border: 1px solid #ddd;
  padding: 1rem;
  transition: box-shadow 0.3s ease;
}

.guide-card:hover {
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.guide-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.guide-step .step-content ul {
	margin-left: 30px;
}

.guide-tag a, .guide-tag a:hover {
	color: #fff;
}