/**
 * @file
 * Styles for the Chibanippo Eventbank module.
 */

/* Header styles */
.eventbank-header {
    margin-bottom: 30px;
}

.eventbank-header h2 {
    font-size: 24px;
    margin-bottom: 15px;
    border-bottom: 2px solid #0070c0;
    padding-bottom: 10px;
}

.eventbank-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.eventbank-nav li {
    flex: 1;
}

.eventbank-nav a {
    display: block;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: background-color 0.3s;
    line-height: 1.4;
}

.eventbank-nav a:hover {
    background-color: #e0e0e0;
}

.eventbank-nav a.active {
    background-color: #e0e0e0;
    color: #fff;
    border-radius: 4px 4px 0 0;
}

.eventbank-nav a.active:hover {
    background-color: #e0e0e0;
}

/* エリアラベル：デフォルトはインライン表示 */
.eventbank-nav .area-label {
    display: inline;
}

.eventbank-item:hover {
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
}

.eventbank-item-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.eventbank-image {
    display: block;
    position: relative;
    background-color: silver;
    width: 100%;
    min-width: 120px;
    height: 140px;
    overflow: hidden;
    text-align: center;
}

.eventbank-image img {
    max-width: 100%;
    vertical-align: top;
    /*width: auto;*/
    /*height: auto;*/
    /*max-height: 140px;*/
    margin: 0 auto;
    object-fit: contain;
}

.eventbank-image img:hover {
    transform: scale(1.05);
}

.eventbank-info {
    padding: .9rem 0 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.eventbank-title {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.4em;
    margin-top: 0;
    margin-bottom: .5rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
}

.eventbank-title a {
    color: #0070c0;
    text-decoration: none;
}

.eventbank-title a:hover {
    text-decoration: underline;
}

.eventbank-summary {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
    flex-grow: 1;
}

.eventbank-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.eventbank-tags span {
    background-color: #f0f0f0;
    border-radius: 3px;
    padding: 3px 8px;
    font-size: 12px;
    color: #666;
}

.eventbank-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Event detail styles */
.eventbank-detail-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.eventbank-detail-header {
    margin-bottom: 30px;
}

.eventbank-detail-title {
    font-size: 28px;
    margin-bottom: 15px;
    border-bottom: 2px solid #0070c0;
    padding-bottom: 10px;
}

.eventbank-detail-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.eventbank-detail-image {
    text-align: center;
    background-color: silver;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.eventbank-detail-image img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    vertical-align: top;
    border-radius: 2px;
}

.eventbank-detail-description {
    margin-bottom: 30px;
}

.eventbank-detail-text {
    line-height: 1.6;
}

.eventbank-detail-table {
    width: 100%;
    border-collapse: collapse;
}

.eventbank-detail-table th,
.eventbank-detail-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.eventbank-detail-table th {
    width: 25%;
    color: #666;
    font-weight: normal;
}

.eventbank-detail-footer {
    margin-top: 40px;
    text-align: center;
}

.eventbank-detail-back a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0070c0;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.eventbank-detail-back a:hover {
    background-color: #005999;
}

/* City list styles */
.eventbank-city-list {
    margin-top: 40px;
}

.eventbank-city-list h3 {
    font-size: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.eventbank-city-grid ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.eventbank-city-grid a {
    display: block;
    padding: 8px;
    background-color: #f5f5f5;
    text-decoration: none;
    color: #333;
    border-radius: 3px;
    text-align: center;
    transition: background-color 0.3s;
}

.eventbank-city-grid a:hover {
    background-color: #e0e0e0;
}

/* Recent events block styles */
.eventbank-recent-block {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
}

.eventbank-recent-title {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 2px solid #0070c0;
    padding-bottom: 10px;
}

.eventbank-recent-list {
    margin-bottom: 15px;
}

.eventbank-recent-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.eventbank-recent-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.eventbank-recent-inner {
    display: flex;
    align-items: flex-start;
}

.eventbank-recent-image {
    width: 80px;
    height: 60px;
    margin-right: 10px;
    overflow: hidden;
    border-radius: 3px;
    background-color: silver;
    text-align: center;
}

.eventbank-recent-image img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    vertical-align: top;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
}

.eventbank-recent-info {
    flex: 1;
}

.eventbank-recent-name {
    font-size: 15px;
    margin: 0 0 5px;
}

.eventbank-recent-name a {
    color: #0070c0;
    text-decoration: none;
}

.eventbank-recent-name a:hover {
    text-decoration: underline;
}

.eventbank-recent-date {
    font-size: 12px;
    color: #666;
}

.eventbank-recent-more {
    text-align: right;
}

.eventbank-recent-more a {
    display: inline-block;
    padding: 5px 10px;
    background-color: #0070c0;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-size: 12px;
    transition: background-color 0.3s;
}

.eventbank-recent-more a:hover {
    background-color: #005999;
}

/* Responsive styles */
@media (min-width: 769px) and (max-width: 1080px) {
    .eventbank-item {
        width: calc(100% / 3 - 4%);
    }
}
@media (max-width: 768px) {
    /* ナビは横並びを維持、エリアラベルだけ改行して2行表示 */
    .eventbank-nav ul {
        flex-direction: row;
    }

    .eventbank-nav a {
        padding: 8px 4px;
        font-size: 13px;
    }

    .eventbank-nav .area-label {
        display: block;
    }

    .eventbank-detail-main {
        grid-template-columns: 1fr;
    }

    .eventbank-city-grid ul {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    /* スマホ表示での調整 */
    .eventbank-list {
        gap: 0;
    }

    .eventbank-image {
        max-width: 100%;
        max-height: 88px;
    }

}
