/* ORGANISM - MATCH PAGES */

/** MOLECULE - MATCH HEADER **/

.match__top {
    position: relative;
    overflow: hidden;
}

.match__top .match__tabs,
.match__top .match__header {
    position: relative;
    z-index: 5;
}

/* (landscape tablet, 1000px and up) */
@media (min-width: 62.5em) {

    .match__top {
        padding-top: 3.1rem;
    }

    .match__body > .data-tab {
        padding-bottom: 10rem;
    }

    .match__body--sp-event {
        display: block;
    }

}

/** MOLECULE - MATCH SCOREBOARD **/

.match__scoreboard {
    width: 100%;
    margin-left: -1rem;
    padding: 2rem 1.5rem 2rem 2.5rem;
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    transform: skew(-8deg);
    -moz-transform: skew(-8deg);
    -webkit-transform: skew(-8deg);
}

.match__scoreboard > * {
    transform: skew(8deg);
    -moz-transform: skew(8deg);
    -webkit-transform: skew(8deg);
}

.match__scoreboard .match__team {
    text-align: center;
}

.match__scoreboard .match__team-name {
    line-height: 1.2rem;
    font-size: .95rem;
}

.match__team-logo,
.match__team-logo img {
    max-height: 35px;
}

/* (landscape phones for a 360 - 640px) */
@media (min-width: 40em) {

   .match__scoreboard {
       padding: 2rem 5.5rem 2rem 6.5rem;
   }

}

/* (landscape tablet, 1000px and up) */
@media (min-width: 62.5em) {

    .match__header {
        display: flex;
        align-items: center;
        margin: 2rem auto 4rem;
    }

    .match__score p {
        font-size: 1.8rem;
        margin: 1rem 0 0;

    }

    .match__scoreboard {
        width: calc(100% - 400px);
    }

    .match__team-logo,
    .match__team-logo img {
        max-height: 55px;
    }

    .match__scoreboard .match__team-name span {
        display: inline-block;
    }

}

/* (laptop, 1232px and up) */
@media (min-width: 77em) {

   .match__scoreboard {
       position: relative;
       margin-top: 0;
   }

   .match__scoreboard:before {
       content: '';
       position: absolute;
       left: calc(-100% + 1px);
       top: 0;
       width: 100%;
       height: 100%;
       background: #fff;
   }

   .match__team-logo,
   .match__team-logo img {
        max-height: 65px;
    }

    .match__score p {
        font-size: 2rem;
    }

}

/** MOLECULE - MATCH DETAILS **/

.match__details-block {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.match__details-row {
    flex: 1 1 48%;
    margin-bottom: 1rem;
}

.match__details-wrapper {
    overflow: hidden;
}

/* (landscape tablet, 1000px and up) */
@media (min-width: 62.5em) {

    .match__details {
        margin: 0;
    }

    .match__details {
        width: 400px;
    }

    .match__details-wrapper {
        background: transparent;
        padding: 0 2rem 0 3rem;
    }

    .match__details-wrapper:before {
        display: none;
    }

    .match__details-row i {
        color: #fff;
    }

    .match__details-wrapper h2 {
        font-size: 1.3rem;
        line-height: 1.7rem;
    }

}

/* (laptop, 1232px and up) */
@media (min-width: 77em) {

    .match__details-wrapper {
        padding: 0 0 0 4rem;
    }

}

/** MOLECULE - MATCH TABS **/

.match__top .match__tabs .tab-navigation {
    margin: 0;
    position: relative;
    text-align: center;
}

.match__tabs {
    background: rgba(63, 63, 63, .5);
    border: 1px solid #646464;
    border-width: 1px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.match__tabs .tab {
    color: #fff;
    background: none;
    width: auto;
}

.match__tabs .tab-nav-active span {
    position: relative;
}

.match__tabs .tab-nav-active span:after {
    content: '';
    position: absolute;
    bottom: -1.1rem;
    left: 0;
    width: 100%;
    height: 3px;
    background: #e90052;
}

/** MOLECULE - MATCH REPORT **/

.article--report .article__meta {
    background: transparent;
    text-align: center;
    padding-top: 1rem;
}

.article--report .social-share {
    text-align: center;
}

.article--report .article__share-sponsor {
    max-width: 100%;
}


/* (landscape tablet, 1000px and up) */
@media (min-width: 62.5em) {

    .article--report .social-share {
        text-align: left;
    }

    .article--report .article__meta {
        padding: 2rem 0;
    }

}