<style>
.five-line-text .five-line-toggle {
    display: block;
    margin-top: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #0073e6;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.five-line-text .five-line-toggle:hover {
    text-decoration: underline;
}
</style>

<script>
(function () {
    function initialiseFiveLineText() {
        document.querySelectorAll('.five-line-text').forEach(function (widget) {
            if (widget.dataset.fiveLineReady === 'true') {
                return;
            }

            const content =
                widget.querySelector('.elementor-text-editor') ||
                widget.querySelector('.text-editor') ||
                widget.firstElementChild;

            if (!content) {
                console.log('Read-more content not found:', widget);
                return;
            }

            widget.dataset.fiveLineReady = 'true';

            const collapsedHeight = 120;

            content.style.overflow = 'hidden';
            content.style.maxHeight = collapsedHeight + 'px';
            content.style.transition = 'max-height 0.3s ease';

            const button = document.createElement('button');

            button.type = 'button';
            button.className = 'five-line-toggle';
            button.textContent = 'Read more';
            button.setAttribute('aria-expanded', 'false');

            widget.appendChild(button);

            requestAnimationFrame(function () {
                if (content.scrollHeight <= collapsedHeight + 2) {
                    content.style.maxHeight = 'none';
                    button.style.display = 'none';
                }
            });

            button.addEventListener('click', function () {
                const expanded =
                    widget.classList.toggle('five-line-expanded');

                if (expanded) {
                    content.style.maxHeight =
                        content.scrollHeight + 'px';

                    button.textContent = 'Read less';
                } else {
                    content.style.maxHeight =
                        collapsedHeight + 'px';

                    button.textContent = 'Read more';
                }

                button.setAttribute(
                    'aria-expanded',
                    expanded ? 'true' : 'false'
                );
            });
        });
    }

    document.addEventListener(
        'DOMContentLoaded',
        initialiseFiveLineText
    );

    window.addEventListener(
        'load',
        initialiseFiveLineText
    );

    setTimeout(initialiseFiveLineText, 1000);
    setTimeout(initialiseFiveLineText, 2500);
})();
</script><?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//new.mediaentertainmentme.com/wp-content/plugins/wordpress-seo/css/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://new.mediaentertainmentme.com/post-sitemap.xml</loc>
		<lastmod>2026-07-16T21:41:11+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://new.mediaentertainmentme.com/page-sitemap.xml</loc>
		<lastmod>2026-07-22T20:15:24+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://new.mediaentertainmentme.com/product-sitemap.xml</loc>
		<lastmod>2026-07-24T18:56:42+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://new.mediaentertainmentme.com/category-sitemap.xml</loc>
		<lastmod>2026-07-16T21:41:11+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://new.mediaentertainmentme.com/product_cat-sitemap.xml</loc>
		<lastmod>2026-07-24T18:56:42+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://new.mediaentertainmentme.com/author-sitemap.xml</loc>
		<lastmod>2026-07-21T20:38:42+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Yoast SEO -->