/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
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: 1.0.1
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
*/


/* FRONT PAGE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'News Cycle', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px 20px 20px;
}

a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

a:hover {
    color: #c00;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.icon {
    display: inline;
    width: 50px;
    margin-right: 20px;
}

/* Header Styles */
.site-header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 3px solid #000;
    padding-bottom: 15px;
}

.site-header h1 {
    font-size: 3.5rem;
    letter-spacing: 3px;
    margin-bottom: 5px;
    font-weight: 700;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.real {
	font-weight: 700;
	text-decoration: underline;
	}

.last-updated {
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
    border-bottom: 3px solid #000;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

/* Main Headline */
.main-headline {
    margin: 20px 0 30px;
    text-align: center;
}

.main-headline-link {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    display: block;
}

.main-headline-image {
    max-width: 70%;
    margin: 15px auto;
    border: 1px solid #ddd;
    max-height: 600px;
}



/* News Grid Layout */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4%;
    margin-bottom: 40px;
}

.column {
    border-top: 2px solid #000;
}

/* Category Section */
.category-section {
    margin-bottom: 30px;
}

.category-section:not(:first-child) { 
		border-top: 2px solid #000;
		margin-top: 50px;
}

.category-title {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 20px 0 15px;
    padding-bottom: 5px;
    /* border-bottom: 1px solid #ddd; */
    line-height: 1.3em;
}

.news-item {
    margin-bottom: 15px;
    position: relative;
}

.news-headline {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
}

.news-item-with-image {
    margin-bottom: 25px;
    padding: 20px;
    border: 1px solid #ddd;
}

.news-image {
    margin-top: 8px;
    border: 1px solid #ddd;
}

/* Subscribe Section */
.subscribe-section {
    text-align: center;
    background-color: #f0f0f0;
    padding: 30px;
    margin: 40px 0;
    border: 1px solid #ddd;
}

.subscribe-section h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

#subscribe-form {
    display: flex;
    max-width: 500px;
    margin: 20px auto;
}

#subscribe-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    font-family: 'News Cycle', sans-serif;
    font-size: 1rem;
}

#subscribe-form button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    font-family: 'News Cycle', sans-serif;
    font-weight: 700;
    font-size: 1rem;
}

#subscribe-form button:hover {
    background-color: #c00;
}

.small {
    font-size: 0.8rem;
    color: #666;
}

/* Ad Placeholder */
.ad-placeholder {
    margin: 30px 0;
    padding: 20px;
    background-color: #f0f0f0;
    text-align: center;
    border: 1px dashed #ccc;
    min-height: 250px;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .site-header h1 {
        font-size: 2.8rem;
    }
    
    .main-headline-link {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .site-header h1 {
        font-size: 2.2rem;
    }
    
    .main-headline-link {
        font-size: 1.6rem;
    }
    
    .main-headline-image {
        max-width: 100%;
    }
    
    #subscribe-form {
        flex-direction: column;
    }
    
    #subscribe-form input {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .site-header h1 {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
}

 
