/* public/css/styles.css */

/* Body Styling */
body {
    /* font-family: 'Helvetica Neue', Arial, sans-serif; *//* Clean sans-serif font */
    background-color: #f8f9fa;
    padding-top: 70px;
    /* line-height: 1.6; */
}

/* Navbar Styling */
.navbar-brand {
    font-size: 1.75rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.navbar-dark .navbar-brand {
    color: #ffffff;
}

/* Article Title Styling */
.card-title, h1 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
    margin-bottom: 1rem;
}

.card-title a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #C3982A !important;
    margin-bottom: 1rem;
}

/* Article Content Styling */
.article-content {
    font-size: 1.125rem;
    color: #555;
    margin-top: 1rem;
}

/* Article Teaser Styling */
.article-teaser {
    color: #6c757d;
    font-size: 1.125rem;
}

/* Card Styling */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    background-color: #ffffff;
}

.card-body {
    padding: 2rem;
}

/* Button Styling */
.btn-primary {
    background-color: #0062cc;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Footer Styling */
footer {
    background-color: #343a40;
    padding: 1.5rem 0;
    color: white;
    text-align: center;
}

/* Pagination */
.pagination {
    justify-content: center;
    margin-top: 2rem;
}

.page-item.active .page-link {
    background-color: #0062cc;
    border-color: #0062cc;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.5rem;
    }

    .card-title, h1 {
        font-size: 1.75rem;
    }

    .article-content, .article-teaser {
        font-size: 1rem;
    }

    .btn-primary {
        font-size: 0.875rem;
    }
}

/* Disable scroll anchoring on the textarea */
.paragraph-input {
    overflow-anchor: none;
}

.close-alert{
	position: relative;
	top: -12px;
	left: 15px;
}