/* ----------- Galaxy S4, S5 and Note 3 ----------- */

/* Portrait */
@media screen
and (device-width: 320px)
and (device-height: 640px)
and (-webkit-device-pixel-ratio: 3)
and (orientation: portrait) {
    .grid-info {
        font-size: 1.4rem;
        line-height: 2.1rem;
    }
}

/* Landscape */
@media screen
and (device-width: 320px)
and (device-height: 640px)
and (-webkit-device-pixel-ratio: 3)
and (orientation: landscape) {
    .grid-info {
        font-size: 2rem;
        line-height: 3rem;
    }
}

/* ----------- Galaxy Note 9 ----------- */

/* Portrait */
@media only screen
and (min-device-width: 414px)
and (max-device-width: 846px)
and (-webkit-min-device-pixel-ratio: 3)
and (orientation: portrait) {
    .grid-info {
        font-size: 1.6rem;
        line-height: 2.3rem;
    }
}

/* Landscape */
@media only screen
and (min-device-width: 414px)
and (max-device-width: 846px)
and (-webkit-min-device-pixel-ratio: 3)
and (orientation: landscape) {
    .grid-info {
        font-size: 2rem;
        line-height: 3rem;
    }
}

