.castle-siege {
    border-left: 1px solid #c9c9c8;
    width: auto;
    background-size: cover;
    background: #e8e6e6 url(../images/castle-siege.png) no-repeat center;
    padding: .5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;

    @include media-breakpoint-down(lg) {
        border-left: 0;
        padding: 1rem;
    }

    &-header {
        text-transform: uppercase;
        font-weight: bold;
        color: $white;
        background: $primary;
        padding: .9rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    &-owner {
        display: flex;
        background: rgba(0, 0, 0, .5);
        padding: .5rem;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: $border-radius;

        .logo {
            height: 80px;
            width: 80px;
        }

        &-guild {
            text-align: center;
        }
    }

    &-master {
        background: rgba(0, 0, 0, .5);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: .5rem 1rem;
        border-radius: $border-radius;
        gap: .5rem;
    }

    &-next {
        background: rgba(0, 0, 0, .5);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: .5rem 1rem;
        border-radius: $border-radius;
    }

    &-trailer {
        background: #373636;
        padding: 20px;
        min-height: 60px;
    }

    .text {
        margin-top: .5rem;
        font-size: .8rem;
        color: $white;
    }

    .name {
        color: $primary;
        font-weight: bold;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .castle-siege {
        border-left: 0;
    }
}