@media only screen and (max-width: 680px) {
  .offbeat-pricing-list-item .offbeat-pli-bottom-content {
    display: block !important; /* Ensure it is visible for all screens under 680px */
  }
}



/* Styling the title line */
.beverage-title-line {
    display: flex;
    align-items: baseline; /* Align elements to the text baseline */
    justify-content: space-between; /* Title on the left, price on the right */
    gap: 10px; /* Spacing between elements */
    font-size: 24px; /* Customize font size */
    font-weight: bold; /* Customize font weight */
    color: #59d600; /* Use theme's color */
    margin-bottom: 10px; /* Space below title line */
}

/* Title specific styling */
.beverage-title-line .beverage-title {
    flex-grow: 0;
    margin: 0;
    font-size: inherit; /* Use the same font size as the parent h4 */
    font-weight: bold;
    color: inherit; /* Use theme's color */
}

/* Spacer styling */
.beverage-title-line .beverage-spacer {
    flex-grow: 1;
    border-bottom: 1px dotted currentColor; /* Matches the current text color */
    height: 0; /* No additional height for the spacer */
    margin: 0 10px; /* Space around spacer */
}

/* Price styling */
.beverage-title-line .beverage-price {
    flex-shrink: 0;
    white-space: nowrap; /* Prevent wrapping */
    font-weight: bold;
    font-size: inherit; /* Use the same font size as the parent h4 */
    color: inherit; /* Use theme's color */
}

/* Tagline styling */
.beverage-tagline {
    color: inherit; /* Set the tagline color to green */
    margin-bottom: 20px; /* Add space between the tagline and the next element */
    font-size: 18px; /* Optional: Customize font size */
    line-height: 1.6; /* Improve readability */
}

/* Divider styling */
.beverage-divider {
    border: 0;
    border-top: 1px solid #ccc; /* Horizontal line design */
    margin: 20px 0; /* Add space above and below the line */
}

/* Social Share shortcode area */
.beverage-social-share {
    text-align: left; /* Adjust alignment if needed */
    margin-top: 10px;
}


.beverage-social-share {
    text-align: center; /* Center aligns the icons */
    margin-top: 20px;   /* Adds some spacing */
}

.beverage-social-share .edgtf-blog-share {
    display: inline-block; /* Prevents stretching */
}



