/*
Theme Name: O Intocável
Theme URI: https://example.com/intocavel
Author: Your Name
Author URI: https://example.com
Description: A custom theme for Blog Professor Correia based on Tailwind CSS.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: prof-correia
*/

/* Tailwind functionality is loaded via CDN in header.php for this version */
body {
    font-family: 'Inter', sans-serif;
}
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Ensure images in posts are responsive */
.prose img, 
.entry-content img, 
.wp-block-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem; /* Optional: matches theme rounded corners */
}

/* Professional Links Widget Styling */
.prof-links-widget .widget_nav_menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.prof-links-widget .widget_nav_menu ul li {
    margin: 0;
}

.prof-links-widget .widget_nav_menu ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background-color: #f8fafc; /* slate-50 */
    color: #475569; /* slate-600 */
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

/* Dark mode support logic matches parent theme class */
.dark .prof-links-widget .widget_nav_menu ul li a {
    background-color: #1e293b; /* slate-800 */
    color: #cbd5e1; /* slate-300 */
}

.prof-links-widget .widget_nav_menu ul li a:hover {
    background-color: #1a56db; /* Primary Blue */
    color: white;
    transform: translateX(5px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.prof-links-widget .widget_nav_menu ul li a::after {
    content: '→'; /* Simple arrow, or use material symbol if available in pseudo */
    font-family: sans-serif;
    font-weight: bold;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.prof-links-widget .widget_nav_menu ul li a:hover::after {
    opacity: 1;
}

/* Alignments */
.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}
.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}
.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
}