.ep-header {
    background-color: #000;
    color: white;
    padding: 10px;
}

.ep-row-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.ep-site-title {
    display: flex;
	align-items: center;
	gap: 1rem;
	padding-left: 1rem;
}

.ep-site-title {
	position: relative;
	display: inline-block;
}

.ep-site-title p {
    color: white;
    font-size: 14px;
    margin: 0;
}

.ep-button {
    background: white;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
}

.ep-row-bottom {
    margin-top: 20px;
    padding-top: 10px;
    text-align: center;
}
.ep-row-bottom nav ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ep-menu-button {
	position: absolute;
	top: 25%;
	left: 5%;
	transform: translateX(-50%);
	font-size: 30px;
	background-color: #000;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 10px 14px;
	cursor: pointer;
	z-index: 10;
	transition: background-color 0.3s ease, transform 0.2s ease;
}

.ep-menu-button:hover {
	background-color: #444;
	transform: translateX(-50%) scale(1.05);
}

.ep-modal, .ep-menu-mobile {
    display: none;
    position: fixed;
    top: 0;
    height: 100%;
    background-color: #111;
    z-index: 1001;
    padding: 20px;
    overflow-y: auto;
}

.ep-modal {
    left: 0;
    width: 50%;
}

.ep-modal.open, .ep-menu-mobile.open {
    display: block;
}

.ep-breaking-post {
    margin-bottom: 20px;
}
.ep-breaking-post img {
    width: 100%;
    height: auto;
}
.ep-breaking-post .ep-title {
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-top: 5px;
}
.ep-breaking-post .ep-date {
    color: #ccc;
    font-size: 14px;
}

.ep-breaking-posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .ep-breaking-posts {
        grid-template-columns: 1fr;
    }
	.ep-modal {
		left: 0;
		width: 75%;
	}
}