.gt-asx-stock {
    font-family: Poppins, sans-serif;
    font-size: 15px;
    padding: 15px 0;
    color: #000f3f;
}

.gt-asx-stock .row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: auto;
    gap: 15px;
}

.gt-asx-stock .col {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.gt-asx-stock .label {
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

@media (max-width: 767px) {
    .gt-asx-stock .row {
        flex-direction: column;
        gap: 15px;
    }
    
    .gt-asx-stock .col {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding: 8px 0;
    }
    
    .gt-asx-stock .label {
        margin-bottom: 0;
        flex: 1;
    }
    
    .gt-asx-stock .value {
        flex: 1;
        text-align: right;
    }
}


/* Share Price */

.stock-container {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    font-size: 22px;
    color: #0b1530;
    padding: 4px 32px;
    border-radius: 8px;
    font-family: Merriweather;
}

.price {
    font-size: 50px;
    font-weight: 400;
    color: #0b1530;
    line-height: 1;
}

.change {
    font-weight: 400;
    font-size: 21px;
}

.last-trade {
    font-weight: 700;
    color: #0b1530;
    font-size: 21px;
    margin-left: 10px;
}

.date {
    font-weight: 400;
    color: #0b1530;
    font-size: 21px;
}

@media (max-width: 767px) {
    .stock-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        font-size: 18px;
        padding: 0px 0px;
    }
    
    .price {
        font-size: 28px;
    }
    
    .last-trade {
        font-size: 14px;
        margin-left: 0;
    }
    
    .date {
        font-size: 14px;
    }
}