/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

@media (max-width: 767px) { 
span#cn-notice-text {
    text-align: center !important;
    margin-right: 0px !important;
    line-height: 1.5em !important;
    width: 100% !important;
    margin-top: 0px !important;
}
}


a {
	outline: none !important;
}

a:focus {
	outline: none !important;
}

.elementor-slideshow__title {
    display: none !important;
}

a.posted-by__author {
    pointer-events: none !important;
}

a.post__date-link {
    pointer-events: none !important;
}

.elementor-post-navigation__separator {
    margin-left: 20px !important;
    margin-right: 20px !important;
}

b, strong {
    font-weight: 600 !important;
}

img.elementor-lightbox-image.elementor-lightbox-prevent-close.swiper-lazy.swiper-lazy-loaded {
    border-radius: 10px !important;
}

a.view-solution {
    display: block;
    margin-top: 20px;
    font-weight: 600;
}

/* Row container */
.tutorial-row {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Centers buttons vertically with the title */
    padding: 16px 20px;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    margin-bottom: 14px;
    background: #ffffff;
}

/* Title */
.tutorial-title {
    font-size: 18px;
    font-weight: 600;
    color: #252525;
    line-height: 1.3;
}

/* Button wrapper */
.tutorial-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0; /* Prevents wrapping on desktop */
}

/* Buttons */
.tutorial-btn {
    padding: 4px 15px !important;
    background: #0069A7;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.youtube-btn {
    padding: 4px 15px !important;
    background: #c60000;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.call-btn {
    padding: 4px 15px !important;
    background: #0097cc;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

/* Hover effect */
.tutorial-btn:hover {
    background: #F7991C;
    color: #ffffff !important;
}

.youtube-btn:hover {
    background: #ff0000;
    color: #ffffff !important;
}

.call-btn:hover {
    background: #0069A7;
    color: #ffffff !important;
}

/* MOBILE STYLE — All buttons on one line */
@media (max-width: 768px) {
    .tutorial-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .tutorial-buttons {
        width: 100%;
        justify-content: space-between; /* Keeps all three on one line */
        gap: 6px;
    }

    .tutorial-btn {
        flex: 1;
        text-align: center;
        justify-content: center;
        white-space: nowrap;
    }
}