/* Styles for Picture/show.html to match Product/show.html */

/* Container simulation since we can't add .container class */
#page_main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 15px;
    width: 100%;
}

/* Breadcrumb / Site Nav */
.site-nav {
    font-size: 14px;
    color: #737373;
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
}

.site-nav a {
    color: #181818;
}

.site-nav a:hover {
    color: #011826;
}

/* Title */
.page-news .title {
    font-size: 24px;
    color: #262626;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: "Jost", sans-serif;
    text-transform: uppercase;
}

/* Content Area */
.page-news .text.editor {
    color: #393939;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 30px;
}

/* Picture List - Gallery Style */
#piclist {
    margin-bottom: 30px;
}

#piclist ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    padding: 0;
    list-style: none;
}

#piclist li {
    float: none !important; /* Override inline style if possible, or just use flex */
    margin: 0 10px 20px !important;
    border: 1px solid #eee;
    padding: 5px;
    transition: all 0.3s ease;
}

#piclist li:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-color: #ddd;
}

#piclist li img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Meta Info (Hits/Date) */
.hits {
    font-size: 13px;
    color: #999;
    margin-bottom: 20px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

/* Pagination (Prev/Next) */
.page {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
}

.page a {
    color: #393939;
    margin: 0 5px;
}

.page a:hover {
    color: #011826;
    text-decoration: underline;
}
