
.editors--container{
 
  width:72em;
    margin: 40px auto;
    margin-left: 90px;
    overflow: hidden;
    font-family: 'Jost', sans-serif;
}

/* 1. HEADER FIX: Ensures the container doesn't block clicks */
.pick-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #ffffff;
    margin-bottom: 20px;
    position: relative;
    z-index: 10; /* Keeps it above the slider track */
}

/* 2. BUTTON NAV: Forced to the front */
.pick-nav {
    display: flex;
    gap: 5px;
    position: relative;
    z-index: 20;
    pointer-events: auto !important;
}

/* 3. BUTTON STYLE: Reduced width and boxed */
.pick-nav button {
    background: transparent !important; /* Navy Boxed Style */
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
    cursor: pointer !important;
    
    /* WIDTH REDUCTION */
    width: 32px !important;  /* Small, square-ish buttons */
    height: 32px !important;
    padding: 0 !important;   /* Remove padding to keep it tight */
    
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    transition: all 0.2s ease;
    pointer-events: auto !important;
}

/* 4. ICON FIX: Prevents icon from stealing the click */
.pick-nav button i {
    font-size: 12px !important; /* Smaller arrows */
    pointer-events: none !important; 
    color: #ffffff !important;
}

.pick-nav button:hover {
    background: #ffffff !important;
    border-color: #ffffff !important;
}

.pick-nav button:hover i {
    color: #1e3e63 !important; /* Inverts color on hover */
}

/* 5. VIEWPORT: Ensures images don't overlap the header */
.pick-viewport {
    overflow: hidden;
    position: relative;
    z-index: 1; /* Lower than the header */
}
.pick-title{
    color: white;
    font-family:'Times New Roman', Times, serif;
    font-size: 30px;
}
.pick-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.pick-box {
    min-width: 300px; /* Adjust based on how many you want visible */
    aspect-ratio: 1 / 1; /* FORCES SQUARE SHAPE */
    position: relative;
    background: #333;
    overflow: hidden;
    
}

.pick-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.pick-box:hover img {
    transform: scale(1.1);
}

/* TEXT OVERLAY */
.pick-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    box-sizing: border-box;
}

.pick-overlay .category {
    font-size: 10px;
    background: #ffcc00;
    color: #1E3E63;
    padding: 3px 8px;
    font-weight: bold;
    border-radius: 2px;
}

.pick-overlay h3 {
    margin: 10px 0 0;
    font-size: 18px;
    line-height: 1.2;
}



.pick-meta {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    align-items: center;
}

.meta-item {
    color: #ffffff;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* The Profile Circle Fix */
.profile-circle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 10px;           /* Small size */
    height: 10px;          /* Small size */
    border: 1px solid #ffffff; /* The hollow circle line */
    border-radius: 100%;    /* Makes it a circle */
    font-size: 9px !important; /* Makes the person inside very small */
    background: transparent; /* Ensures no color inside */
}

.meta-item i.fa-clock {
    font-size: 13px;
    background: transparent;
}
/* Style the icons specifically */
#pick-prev i, 
#pick-next i {
    color: #ffffff; 
    font-size: 14px; /* Slightly smaller for a more refined look */
}

/* Style the buttons in the pick-nav container */
.pick-nav button {
    background: transparent; 
    border: 1px solid rgba(255, 255, 255, 0.2); /* Faded white border */
    color: #ffffff;
    cursor: pointer;
    padding: 6px 10px;
    margin-left: 5px;
    border-radius: 4px; /* Optional: adds a slight curve to the corners */
    transition: all 0.3s ease; /* Smoothly transitions border and background */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Hover state: brighten the border and add a hint of background */
.pick-nav button:hover {
    border: 1px solid rgba(255, 255, 255, 1); /* Solid white border */
    background: rgba(255, 255, 255, 0.05); /* Very subtle white tint */
}

/* Optional: Active/Click state */
.pick-nav button:active {
    transform: scale(0.95); /* Slight push-in effect when clicked */
}

/* BRUTE FORCE COMPACT MOBILE */
@media screen and (max-width: 768px) {
    /* 1. Shrink the main area and remove the 80px desktop gap */
    .editors--container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 10px 0 !important;
        padding: 5px !important;
        margin-left: 0 !important; 
        overflow: hidden !important;
    }

    /* 2. Shrink Title & Header */
    .pick-header {
        margin-bottom: 8px !important;
        padding-bottom: 5px !important;
        border-bottom: 1px solid #fff !important;
    }

    .pick-title {
        font-size: 16px !important;
        margin: 0 !important;
    }

    /* 3. TINY BUTTONS (Forces them to stay in the corner) */
    .pick-nav {
        display: flex !important;
        gap: 2px !important;
    }

    .pick-nav button {
        width: 22px !important;
        height: 22px !important;
        min-width: 22px !important;
        padding: 0 !important;
        border: 1px solid rgba(255,255,255,0.5) !important;
    }

    .pick-nav button i {
        font-size: 8px !important;
    }

    /* 4. SMALL NEWS BOXES (Change 300px to 140px) */
    .pick-box {
        min-width: 140px !important; 
        height: 140px !important;
        margin-right: 8px !important;
    }

    .pick-track {
        gap: 8px !important;
    }

    /* 5. TINY TEXT OVERLAY */
    .pick-overlay {
        padding: 6px !important;
    }

    .pick-overlay h3 {
        font-size: 10px !important;
        line-height: 1.1 !important;
        margin-top: 4px !important;
    }

    .pick-overlay .category {
        font-size: 7px !important;
        padding: 1px 3px !important;
    }

    .pick-meta {
        display: none !important; /* Hide dates/icons on mobile to save space */
    }
}