/*
Theme Name: Custom News Theme
Author: Your Name
Description: A minimal WordPress theme with a news-source vibe, centered content, and support for a daily image, inspired by notes.smalleycoffee.com.
Version: 1.2
*/

body {
    font-family: 'Muli', sans-serif;
	background-color: #e6cac9;
    color: #222;
    text-align: justify;
    margin: 0;
    padding: 0;
    line-height: 1.8;
}

a {
  color: black; /* Makes the link black */
  /*font-style: italic;  Makes the link italic */
  /* background-color: #f8c8dc;  Powder pink highlight */
  /*text-decoration: none;  Removes the default underline */
  padding: 2px 5px; /* Adds some padding to make the highlight more visible */
  border-radius: 3px; /* Softens the highlight edges */
}

.content {
    max-width: 600px;
    margin: 60px auto;
    padding: 20px;
}

/* Logo Styling */
.logo {
    display: block;
    margin: 0 auto;
    max-width: 400px;
	text-align: center;
}

.logo img {
    max-width: 600px !important;
    height: auto !important;
    display: block !important; 
	margin: 0 auto;
}


.daily-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 20px;
}

.post {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 40px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.meta {
    font-family: 'Lora', serif;
    font-size: 14px;
    color: #555;
    margin-top: 10px;
    text-transform: uppercase;
}

/* Hide Tags and Add Single Post Link */
.meta a {
    text-decoration: none;
    color: inherit;
	font-style: normal;
}

.read-more {
    font-size: 14px;
    margin-left: 10px;
}