/**
* Template: Posts
*/

/* TABLE OF CONTENTS ACCORDION */
.ai-toc-accordion {
    border-radius: var(--global-border-radius);
    overflow: hidden;
}
.ai-toc-accordion input[type="checkbox"] {
    display: none;
}
.ai-toc-accordion input[type="checkbox"]:checked ~ .toc-body {
    display: block;
}
.ai-toc-accordion input[type="checkbox"]:checked ~ .toc-header::after {
    transform: rotate(-180deg);
}
.ai-toc-accordion .toc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 24px;
    line-height: 1.2;
    font-family: var(--global-font);
    font-weight: 900;
    padding: 16px 0 16px 30px;
    background-color: #9bcfff;
    cursor: pointer;
    user-select: none;
    transition: 0.3s ease;
}
.ai-toc-accordion .toc-header::after {
    display: block;
    content: "\f107";
    font-family: ts-icons;
    font-size: 26px;
    padding: 2px 35px;
    transition: transform 0.3s ease;
}
.ai-toc-accordion .toc-header:hover {
    background-color: #72bbff;
}
.ai-toc-accordion .toc-body {
    display: none;
    margin: 0;
    padding: 25px 60px;
    background-color: var(--primary-background-color);
    overflow: hidden;
}
.ai-toc-accordion .toc-body a {
    color: var(--body-font);
}
.ai-toc-accordion .toc-body a:hover {
    color: var(--primary-color);
}
.toc-return {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    height: 65px;
    width: 65px;
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    line-height: 1.2;
    color: #fff !important;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    z-index: 101;
}
.toc-return:hover {
    background-color: var(--secondary-color);
    bottom: 25px;
}

/* RELATED FINDS */
.ai-related-products.text {
    position: relative;
    background: var(--secondary-background-color);
    margin: 32px 0;
    border-radius: var(--global-border-radius);
	overflow: hidden;
}
.ai-related-products.text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(https://attractioninsight.com/wp-content/uploads/2026/01/starry-background.png);
    background-repeat: repeat;
    background-position: center;
    background-size: contain;
    opacity: 10%;
}
.ai-related-products.text .container {
    position: relative;
	padding: 22px;
	border-left: 10px solid var(--blue-color);
}
.ai-related-products.text h2 {
    margin: 0 !important;
}
.ai-related-products.text .disclosure {
    font-size: 16px;
    font-weight: 500;
    margin-top: 12px;
    margin-bottom: 20px;
}
.ai-related-products.text ul {
    list-style: none !important;
    margin-left: 10px !important;
}
.ai-related-products.text li {
    margin-bottom: 15px !important;
}
.ai-related-products.text li:last-of-type {
    margin-bottom: 0 !important;
}
.ai-related-products.text a {
    font-weight: 600;
    text-decoration: none;
}
.ai-related-products.text a:hover {
    text-decoration: underline;
}
.ai-related-products.text li div {
	font-size: 16px;
	margin-bottom: 0;
}